Skip to content

Commit 34aa5f8

Browse files
committed
Drop python 3.8
1 parent cd6eeb5 commit 34aa5f8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: ["ubuntu-latest", "windows-latest"]
28-
python-version: ["3.8", "3.10"]
28+
python-version: ["3.9", "3.10"]
2929
steps:
3030
- uses: actions/checkout@v3
3131
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fallback_version = "999"
1212

1313
[tool.black]
1414
line-length = 100
15-
target-version = ["py38"]
15+
target-version = ["py39"]
1616

1717
[tool.isort]
1818
profile = "black"

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers =
1515
Intended Audience :: Science/Research
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Topic :: Scientific/Engineering
@@ -24,7 +23,7 @@ classifiers =
2423
packages = find:
2524
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2625
include_package_data = True
27-
python_requires = >=3.8
26+
python_requires = >=3.9
2827
install_requires =
2928
pandas
3029
numpy >= '1.20'

0 commit comments

Comments
 (0)