Skip to content

Commit b04c440

Browse files
committed
Move Py compat target to 3.8 (closes gh-160)
1 parent 2784aec commit b04c440

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-python@v4
2020
with:
2121
# matches compat target in setup.py
22-
python-version: '3.6'
22+
python-version: '3.8'
2323
- name: "Main Script"
2424
run: |
2525
curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
strategy:
7272
matrix:
73-
python-version: ["3.6", "3.8", "3.9", "3.x", "pypy3.8"]
73+
python-version: ["3.8", "3.9", "3.x", "pypy3.8"]
7474
steps:
7575
- uses: actions/checkout@v3
7676
-

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
"Natural Language :: English",
2525
"Programming Language :: Python",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.6",
28-
"Programming Language :: Python :: 3.7",
2927
"Topic :: Scientific/Engineering",
3028
"Topic :: Scientific/Engineering :: Information Analysis",
3129
"Topic :: Scientific/Engineering :: Mathematics",
@@ -34,11 +32,10 @@
3432
"Topic :: Utilities",
3533
],
3634

37-
python_requires="~=3.6",
35+
python_requires="~=3.8",
3836

3937
install_requires=[
4038
"platformdirs>=2.2.0",
41-
"dataclasses>=0.7;python_version<='3.6'",
4239
"typing_extensions>=4.0; python_version<'3.11'",
4340
],
4441

0 commit comments

Comments
 (0)