Skip to content

Commit

Permalink
Merge branch 'master' into config-with-zope-product-template-6e808865
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac authored Sep 20, 2024
2 parents b9839b6 + 35b239a commit 7f082fa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Changes

- Drop support for Python 3.7.

- SQLAlchemy's versions 2.0.32 up to 2.0.35 run into dead locks when running
the tests on Python 3.11+, so excluding them from the list of supported
versions.
(`#84 <https://github.com/zopefoundation/zope.sqlalchemy/issues/84>`_)

3.1 (2023-09-12)
----------------

Expand Down
1 change: 1 addition & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[buildout]
develop = .
parts = test scripts
show-picked-versions = true

[test]
recipe = zc.recipe.testrunner
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
install_requires=[
'packaging',
'setuptools',
'SQLAlchemy>=1.1,!=1.4.0,!=1.4.1,!=1.4.2,!=1.4.3,!=1.4.4,!=1.4.5,!=1.4.6', # noqa: E501 line too long
'SQLAlchemy>=1.1,!=1.4.0,!=1.4.1,!=1.4.2,!=1.4.3,!=1.4.4,!=1.4.5,!=1.4.6,!=2.0.32,!=2.0.33,!=2.0.34,!=2.0.35', # noqa: E501 line too long
'transaction>=1.6.0',
'zope.interface>=3.6.0',
],
Expand Down

0 comments on commit 7f082fa

Please sign in to comment.