Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wheels for 3.12 (1.4) #52

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,69 @@ jobs:
name: ${{ env.WHEEL_NAME }}
- run: python -m pip install ${{ env.WHEEL_NAME }}[test]
- run: python -m pytest --pyargs replicat.tests

# 3.12 builds
build-312-windows:
needs: lint
uses: ./.github/workflows/build-windows.yml
with:
python-version: '3.12'

build-312-linux:
needs: lint
uses: ./.github/workflows/build-linux.yml
with:
python-version: '3.12'

build-312-macos:
needs: lint
uses: ./.github/workflows/build-macos.yml
with:
python-version: '3.12'

# 3.12 tests
test-312-windows:
needs: build-312-windows
runs-on: windows-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- run: echo "WHEEL_NAME=${{ needs.build-312-windows.outputs.wheel_name }}" >> $GITHUB_ENV
shell: bash
- uses: actions/download-artifact@v2
with:
name: ${{ env.WHEEL_NAME }}
- run: python -m pip install ${{ env.WHEEL_NAME }}[test]
- run: python -m pytest --pyargs replicat.tests

test-312-linux:
needs: build-312-linux
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- run: echo "WHEEL_NAME=${{ needs.build-312-linux.outputs.wheel_name }}" >> $GITHUB_ENV
- uses: actions/download-artifact@v2
with:
name: ${{ env.WHEEL_NAME }}
- run: python -m pip install ${{ env.WHEEL_NAME }}[test]
- run: python -m pytest --pyargs replicat.tests

test-312-macos:
needs: build-312-macos
runs-on: macos-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- run: echo "WHEEL_NAME=${{ needs.build-312-macos.outputs.wheel_name }}" >> $GITHUB_ENV
- uses: actions/download-artifact@v2
with:
name: ${{ env.WHEEL_NAME }}
- run: python -m pip install ${{ env.WHEEL_NAME }}[test]
- run: python -m pytest --pyargs replicat.tests
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ jobs:
with:
python-version: '3.11'

# 3.12 builds
build-312-windows:
uses: ./.github/workflows/build-windows.yml
with:
python-version: '3.12'

build-312-linux:
uses: ./.github/workflows/build-linux.yml
with:
python-version: '3.12'

build-312-macos:
uses: ./.github/workflows/build-macos.yml
with:
python-version: '3.12'

build-sdist:
runs-on: ubuntu-latest
steps:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ jobs:
with:
python-version: '3.11'

# 3.12 builds
build-312-windows:
uses: ./.github/workflows/build-windows.yml
with:
python-version: '3.12'

build-312-linux:
uses: ./.github/workflows/build-linux.yml
with:
python-version: '3.12'

build-312-macos:
uses: ./.github/workflows/build-macos.yml
with:
python-version: '3.12'

build-sdist:
runs-on: ubuntu-latest
steps:
Expand Down
Loading