Skip to content

Commit 1594d95

Browse files
committed
Dropping Python 3.10 support for this release
- Will revisit when test tools are in good working order
1 parent 6e0c76d commit 1594d95

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: [2.7, 3.7, 3.8, 3.9, '3.10']
20+
python-version: [2.7, 3.7, 3.8, 3.9]
2121
database:
2222
- pgsql
2323
- mysql

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"Programming Language :: Python :: 3.7",
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
41-
"Programming Language :: Python :: 3.10",
4241
"License :: OSI Approved :: BSD License",
4342
"Topic :: Software Development :: Libraries :: Python Modules",
4443
"Operating System :: OS Independent",

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py27,py37,py38,py39,py310,lint
3+
py27,py37,py38,py39,lint
44

55
[testenv]
66
passenv = DB DBURI
@@ -12,7 +12,7 @@ commands =
1212
deps =
1313
psycopg2
1414
mysqlclient
15-
py{37,38,39,310}: mysql-connector
15+
py{37,38,39}: mysql-connector
1616

1717
[testenv:lint]
1818
commands = flake8 rdflib_sqlalchemy test
@@ -39,7 +39,6 @@ python =
3939
3.7: py37, lint
4040
3.8: py38
4141
3.9: py39
42-
3.10: py310
4342

4443
[flake8]
4544
max-line-length = 120

0 commit comments

Comments
 (0)