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

Update CI to include Python 3.11, 3.12 #190

Merged
merged 1 commit into from
Jun 3, 2024
Merged
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
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ jobs:
image: python:3.9-slim
- python-version: '3.10'
image: python:3.10-slim
- python-version: '3.11'
image: python:3.11-slim
- python-version: '3.12'
image: python:3.12-slim

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Run tests
shell: bash
Expand All @@ -64,10 +68,10 @@ jobs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5

- name: Installing baseline packages
run: |
Expand All @@ -78,13 +82,13 @@ jobs:
run: python setup.py sdist bdist_wheel

- name: Capture Wheel and SDist
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: artifact
path: dist/*

- name: Publish
if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.event.release.tag_name, 'v')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down
Loading