Skip to content

Commit 51464b6

Browse files
committed
Test against Python 3.10
1 parent 90a2c6d commit 51464b6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ['3.6', '3.9']
9+
python-version: ['3.6', '3.10']
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-python@v2

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ['3.6', '3.7', '3.8', '3.9']
9+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1010
tox_env: ['sqlalchemy14']
1111
include:
1212
- python-version: '3.6'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Here you can see the full list of changes between each SQLAlchemy-Utils release.
1010
- Fixed double-quoted UUID's in sqlalchemy >= 1.4.30 (#581, pull request courtesy of kurtmckee)
1111
- Fixed create_database() and drop_database() crashing with CockroachDB (#586, pull request courtesy of kurtmckee)
1212
- Added mixed case support for pg composite (#584, pull request courtesy of bamartin125)
13+
- Support Python 3.10.
1314

1415

1516
0.38.2 (2021-12-29)

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,20 +78,19 @@ def get_version():
7878
'SQLAlchemy>=1.0'
7979
],
8080
extras_require=extras_require,
81-
python_requires='~=3.4',
81+
python_requires='~=3.6',
8282
classifiers=[
8383
'Environment :: Web Environment',
8484
'Intended Audience :: Developers',
8585
'License :: OSI Approved :: BSD License',
8686
'Operating System :: OS Independent',
8787
'Programming Language :: Python',
8888
'Programming Language :: Python :: 3',
89-
'Programming Language :: Python :: 3.4',
90-
'Programming Language :: Python :: 3.5',
9189
'Programming Language :: Python :: 3.6',
9290
'Programming Language :: Python :: 3.7',
9391
'Programming Language :: Python :: 3.8',
9492
'Programming Language :: Python :: 3.9',
93+
'Programming Language :: Python :: 3.10',
9594
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
9695
'Topic :: Software Development :: Libraries :: Python Modules'
9796
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36, 37, 38, 39}-sqlalchemy{13, 14}
3+
py{36, 37, 38, 39, 310}-sqlalchemy{13, 14}
44
lint
55

66
[testenv]

0 commit comments

Comments
 (0)