Skip to content

Commit

Permalink
PonyORM release 0.7.15-RC1 (2022-01-10)
Browse files Browse the repository at this point in the history
# Features

* Add Python 3.10 support, drop support of Python < 3.7

# Bugfixes

* Do not perform optimistic checks when deleting an object (it is OK if it was already deleted by concurrent transaction)
* Validation of int fields should take into account field size and check that the value is fit into the range
* More tests for hybrid methods added
* Fix incorrect assertion check `assert t is translator.`
* Fix aggregated query `sum(x.field for x in previous_query)`
* #594: Use a clearly synthetic filename when compiling dynamic code to not confuse coverage.py
* Use DecompileError exception instead of AssertionError when a function cannot be decompiled
  • Loading branch information
kozlovsky committed Jan 10, 2022
1 parent 0cccfa0 commit a0a8813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pony/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os, sys
from os.path import dirname

__version__ = '0.7.15-dev'
__version__ = '0.7.15rc1'

def detect_mode():
try: import google.appengine
Expand Down

0 comments on commit a0a8813

Please sign in to comment.