diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f741d0..e232dc4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: runs-on: macos-10.15 strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] + python-version: [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -52,7 +52,7 @@ jobs: python -m pip install --upgrade pip pip3 install cffi pip3 install wheel - python setup.py bdist_wheel + python setup.py bdist_wheel --py-limited-api=cp37 - name: Upload build Artifact wheel uses: actions/upload-artifact@v2.2.4 @@ -64,7 +64,7 @@ jobs: runs-on: macos-12 strategy: matrix: - python-version: ['3.10', '3.11.0-alpha - 3.11.0' ] + python-version: ['3.10' ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -97,7 +97,8 @@ jobs: python -m pip install --upgrade pip pip3 install cffi pip3 install wheel - python setup.py bdist_wheel + python setup.py bdist_wheel --py-limited-api=cp310 + build-linux: runs-on: ubuntu-18.04 @@ -105,7 +106,7 @@ jobs: # You can use PyPy versions in python-version. # For example, pypy2 and pypy3 matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] + python-version: [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -140,7 +141,7 @@ jobs: python -m pip install --upgrade pip pip3 install cffi pip3 install wheel - python setup.py bdist_wheel --plat-name manylinux2014_x86_64 + python setup.py bdist_wheel --plat-name manylinux2014_x86_64 --py-limited-api=cp37 - name: Upload build Artifact wheel uses: actions/upload-artifact@v2.2.4 @@ -173,7 +174,7 @@ jobs: # You can use PyPy versions in python-version. # For example, pypy2 and pypy3 matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] + python-version: [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -211,7 +212,7 @@ jobs: del raylib\dynamic\*.dll >nul 2>&1 del raylib\dynamic\*.dylib >nul 2>&1 del raylib\dynamic\32bit\* >nul 2>&1 - python setup.py bdist_wheel + python setup.py bdist_wheel --py-limited-api=cp37 shell: cmd - name: Upload build Artifact wheel diff --git a/version.py b/version.py index 51a6ec6..f799839 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "4.2.0.0.dev2" \ No newline at end of file +__version__ = "4.2.0.0.dev3" \ No newline at end of file