|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
strategy:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
|
- python-version: ["3.9", "3.10", "3.11"]
|
|
|
+ python-version: ["3.10"]
|
|
|
|
|
|
steps:
|
|
|
- uses: actions/checkout@v4
|
|
|
@@ -37,8 +37,9 @@ jobs:
|
|
|
run: |
|
|
|
python setup.py bdist_wheel
|
|
|
- name: Upload artifact
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
+ uses: actions/upload-artifact@v4
|
|
|
with:
|
|
|
name: wheel-file
|
|
|
path: dist/*.whl
|
|
|
+ retention-days: 30
|
|
|
|