Skip to content

Commit 12f594f

Browse files
committed
Remove support for python 3.6 and set the minimum to v3.7
1 parent 3dc493c commit 12f594f

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-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
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
20+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
SQLAlchemy>=1.4
2-
# dataclasses>=0.8; python_version == "3.6"
32
PyYAML>=5.4
43
coverage>=6.2
54
tox

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ license_files =
1212
LICENSE
1313
classifiers =
1414
License :: OSI Approved :: MIT License
15-
Programming Language :: Python :: 3.6
1615
Programming Language :: Python :: 3.7
1716
Programming Language :: Python :: 3.8
1817
Programming Language :: Python :: 3.9
@@ -30,8 +29,7 @@ package_dir =
3029
=src
3130
install_requires =
3231
SQLAlchemy>=1.4
33-
; dataclasses>=0.8; python_version == "3.6"
34-
python_requires = >=3.6
32+
python_requires = >=3.7
3533

3634
[options.packages.find]
3735
where = src

0 commit comments

Comments
 (0)