Skip to content

Commit 9f5e896

Browse files
committed
Add support for Python 3.10
1 parent d3fe089 commit 9f5e896

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
1515

1616
steps:
1717
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### Features
44

55
- Update compatible Python versions. (Thanks: [blazewicz])
6+
- Add support for Python 3.10. (Thanks: [blazewicz])
67

78
## 1.7.0 - 2022-01-11
89

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def open_file(filename):
6161
"Programming Language :: Python :: 3.7",
6262
"Programming Language :: Python :: 3.8",
6363
"Programming Language :: Python :: 3.9",
64+
"Programming Language :: Python :: 3.10",
6465
"Programming Language :: SQL",
6566
"Topic :: Database",
6667
"Topic :: Database :: Front-Ends",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39
2+
envlist = py36, py37, py38, py39, py310
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)