Skip to content

Commit d0a5f3b

Browse files
committed
py36 not supported, test on 3.8 and 3.10
1 parent 3111f2d commit d0a5f3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ 3.6, 3.7, 3.9, 3.10]
16+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ classifiers =
1616
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
1717
Natural Language :: English
1818
Operating System :: OS Independent
19-
Programming Language :: Python :: 3.6
19+
Programming Language :: Python :: 3.7
2020
Topic :: Scientific/Engineering
2121
Intended Audience :: Science/Research
2222
Programming Language :: Python
2323
Programming Language :: Python :: 3
2424
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.6
2625
Programming Language :: Python :: 3.7
2726
Programming Language :: Python :: 3.8
2827
Programming Language :: Python :: 3.9
28+
Programming Language :: Python :: 3.10
2929
Topic :: Scientific/Engineering
3030
Topic :: Software Development
3131
Typing :: Typed
@@ -42,7 +42,7 @@ install_requires =
4242
typing_extensions;python_version<'3.8'
4343
typing_compat;python_version<'3.8'
4444

45-
python_requires = >=3.6
45+
python_requires = >=3.7
4646
include_package_data = True
4747
package_dir =
4848
=src

0 commit comments

Comments
 (0)