Skip to content

Commit

Permalink
add python 3.13 to the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shoshta73 committed Nov 30, 2024
1 parent 9400e62 commit 6298646
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,37 @@ jobs:
source ./venv/bin/activate
pytest
test-3-13:
needs: test-3-12

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: true

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Setup Venv
run: |
python -m venv ./venv
- name: Install packages
run: |
source ./venv/bin/activate
pip install -r dev.requirements
pip install -r requirements.txt
pip install .
- name: Run tests
run: |
source ./venv/bin/activate
pytest
pip-install-3-9:
needs: test-3-9

Expand Down Expand Up @@ -264,3 +295,32 @@ jobs:
run: python3 -m build
- name: Install
run: python3 -m pip install .

pip-install-3-13:
needs:
- test-3-13
- pip-install-3-12

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: true

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev.requirements
- name: Install build deps
run: python3 -m pip install --upgrade build
- name: Build
run: python3 -m build
- name: Install
run: python3 -m pip install .

0 comments on commit 6298646

Please sign in to comment.