Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
narek01 committed May 31, 2024
1 parent dddedbf commit f68e273
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,9 @@ jobs:
- [windows-latest, win_amd64]
- [windows-latest, win32]

python: ["cp38", "cp39", "cp310", "cp311", "cp312", "pp38"]
python: ["cp39", "cp310", "cp311", "cp312"]

exclude:
# Don't build PyPy 32-bit windows
- buildplat: [windows-latest, win32]
python: "pp38"
- buildplat: [macos-latest, macosx_arm64]
python: "pp38"
- buildplat: [macos-latest, macosx_universal2]
python: "pp38"
- buildplat: [windows-latest, win32]
python: "cp310"

Expand Down Expand Up @@ -79,11 +72,12 @@ jobs:
runs-on: ubuntu-latest
needs: [build_wheels, build_sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels_artifact-*
path: dist
- uses: actions/download-artifact@v3
merge-multiple: true
- uses: actions/download-artifact@v4
with:
name: source_artifact
path: dist
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,9 @@ jobs:
- [windows-latest, win_amd64]
- [windows-latest, win32]

python: ["cp38", "cp39", "cp310", "cp311", "cp312", "pp38"]
python: [ "cp39", "cp310", "cp311", "cp312"]

exclude:
# Don't build PyPy 32-bit windows
- buildplat: [windows-latest, win32]
python: "pp38"
- buildplat: [macos-latest, macosx_arm64]
python: "pp38"
- buildplat: [macos-latest, macosx_universal2]
python: "pp38"
- buildplat: [windows-latest, win32]
python: "cp310"

Expand Down Expand Up @@ -82,11 +75,12 @@ jobs:
runs-on: ubuntu-latest
needs: [build_wheels, build_sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels_artifact-*
path: dist
- uses: actions/download-artifact@v3
merge-multiple: true
- uses: actions/download-artifact@v4
with:
name: source_artifact
path: dist
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

requirements = ['pybind11', 'pandas', 'numpy', 'scipy', 'tqdm']

__version__ = "0.2.3"
__version__ = "0.3.0"


ext_modules = [
Expand Down Expand Up @@ -80,7 +80,7 @@
packages=find_packages(),
install_requires=requirements,
ext_modules=ext_modules,
python_requires=">=3.7",
python_requires=">=3.9",
entry_points={
'console_scripts': [
'dcona = dcona.__main__:main',
Expand Down

0 comments on commit f68e273

Please sign in to comment.