summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-03-05 22:25:46 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2023-03-05 22:25:46 -0500
commit37111795870fd7b8d857790ad1fc5e04278e1de3 (patch)
tree6c9936ee95588db85c7a4612900f2e1bad84f850 /lib/sqlalchemy
parent9e75d181d05e3ae0fcc0705d453c3daf794b59de (diff)
downloadsqlalchemy-37111795870fd7b8d857790ad1fc5e04278e1de3.tar.gz
comment out pickle/ process test and attempt 2.0.5.post1
if .post1 fails to work out, we'll just do 2.0.6 The test_pickle_rows_other_process test is failing during wheel builds as it seems that the "subprocess" run is not using the cython extensions, leading to a pickle mismatch between the cythonized and the pure python version of a row. comment out this test and attempt to release as 2.0.5.post1 so that wheels can build. Fixes: #9429 Change-Id: I6e1e9f2b9c4ef8fa67a88ff86ebdacbeb02b90df
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 2f1355aa6..aafd51541 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -262,7 +262,7 @@ from .types import Uuid as Uuid
from .types import VARBINARY as VARBINARY
from .types import VARCHAR as VARCHAR
-__version__ = "2.0.6"
+__version__ = "2.0.5.post1"
def __go(lcls: Any) -> None: