Skip to content

Commit 2684995

Browse files
committed
[chore]: support python 3.9+
1 parent a6c578b commit 2684995

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.10', '3.12']
14+
python-version: ['3.9', '3.10', '3.12']
1515

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
url="https://github.com/vectorsss/shapG",
3131
classifiers=[
3232
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
3434
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3.12",
3636
"Operating System :: OS Independent",
3737
"Topic :: Scientific/Engineering :: Mathematics",
3838
"Topic :: Scientific/Engineering :: Information Analysis",
3939
],
40-
python_requires='>=3.6',
40+
python_requires='>=3.9',
4141
)

0 commit comments

Comments
 (0)