Skip to content

Commit

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

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

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 @@ -74,7 +81,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels_artifact-*
pattern: wheels_artifact-*
path: dist
merge-multiple: true
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels_artifact-*
pattern: wheels_artifact-*
path: dist
merge-multiple: true
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
packages=find_packages(),
install_requires=requirements,
ext_modules=ext_modules,
python_requires=">=3.9",
python_requires=">=3.7",
entry_points={
'console_scripts': [
'dcona = dcona.__main__:main',
Expand Down

0 comments on commit a5a22ff

Please sign in to comment.