From a5a22ff6a71a1531017066c4c89a416cf2456b4d Mon Sep 17 00:00:00 2001 From: Narek Engibaryan Date: Fri, 31 May 2024 19:39:59 +0000 Subject: [PATCH] Trying to fix upload --- .github/workflows/pypi.yml | 11 +++++++++-- .github/workflows/test_pypi.yml | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e821134..31b0773 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -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" @@ -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 diff --git a/.github/workflows/test_pypi.yml b/.github/workflows/test_pypi.yml index 627ca26..1d8af6e 100644 --- a/.github/workflows/test_pypi.yml +++ b/.github/workflows/test_pypi.yml @@ -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 diff --git a/setup.py b/setup.py index 0ec3c2c..749847a 100644 --- a/setup.py +++ b/setup.py @@ -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',