Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiopasra committed Oct 18, 2023
1 parent 53253c4 commit efb4563
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.x'

- name: Install pep517
run: python -m pip install pep517
- name: Install build
run: python -m pip install build

- name: Build sdist
run: python -m pep517.build --source .
run: python -m build -s

- uses: actions/upload-artifact@v3
with:
Expand All @@ -33,10 +33,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install cibuildwheel
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: pp* cp36-* cp37-*
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
CIBW_SKIP: *_i686

- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.x'

- name: Install pep517
run: python -m pip install pep517
- name: Install build
run: python -m pip install build

- name: Build sdist
run: python -m pep517.build --source .
run: python -m build -s

- uses: actions/upload-artifact@v3
with:
Expand All @@ -36,7 +36,8 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: pp* cp36-* cp37-*
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
CIBW_SKIP: *_i686

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit efb4563

Please sign in to comment.