Skip to content

Commit

Permalink
feat!: drop sqlalchemy 1.3 support
Browse files Browse the repository at this point in the history
Drop support for SQLAlchemy 1.3 which is no longer maintained. See
https://www.sqlalchemy.org/download.html#versions
  • Loading branch information
jpvanhal committed Aug 7, 2023
1 parent 5951820 commit 2056fcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -51,5 +51,5 @@ jobs:
- name: Run tests
env:
SQLALCHEMY_SEARCHABLE_TEST_PASSWORD: postgres
TOXENV: py-sqla1.3, py-sqla1.4
TOXENV: py-sqla1.4
run: tox
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -7,6 +7,7 @@ Unreleased
^^^^^^^^^^

- **BREAKING CHANGE**: Drop support for Python 3.6 and 3.7
- **BREAKING CHANGE**: Drop support for SQLAlchemy 1.3

1.4.1 (2021-06-15)
^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -39,7 +39,7 @@ def get_version():
platforms='any',
python_requires='>=3.8',
install_requires=[
'SQLAlchemy>=1.3.0',
'SQLAlchemy>=1.4,<1.5',
'SQLAlchemy-Utils>=0.37.5',
'validators>=0.3.0',
],
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
@@ -1,12 +1,11 @@
[tox]
envlist = {py38,py39,pypy3}-sqla{1.3,1.4}, lint
envlist = {py38,py39,pypy3}-sqla{1.4}, lint

[testenv]
deps=
pytest>=2.2.3
psycopg2cffi>=2.6.1; platform_python_implementation == 'PyPy'
psycopg2>=2.4.6; platform_python_implementation == 'CPython'
sqla1.3: SQLAlchemy>=1.3,<1.4
sqla1.4: SQLAlchemy>=1.4,<1.5
lint: flake8
lint: isort>=4.0,<5.0
Expand Down

0 comments on commit 2056fcd

Please sign in to comment.