Skip to content

Commit

Permalink
chore: Test with Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Oct 7, 2024
1 parent d03a303 commit 5ad434e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ on:
paths-ignore:
- '**/README.md'

env:
FORCE_COLOR: 1

jobs:
test_tap:
name: Test Tap connectivity and Configuration
runs-on: ubuntu-latest
env:
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt
strategy:
fail-fast: true
fail-fast: false
matrix:
include:
- python-version: "3.8"
Expand All @@ -29,7 +32,9 @@ jobs:
toxenv: py311
- python-version: "3.12"
toxenv: py312
- python-version: "3.11"
- python-version: "3.13"
toxenv: py313
- python-version: "3.x"
toxenv: deps

steps:
Expand All @@ -38,11 +43,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install Tox
run: |
pipx install tox
- name: Test tap
run: |
tox -e ${{ matrix.toxenv }}
- uses: astral-sh/setup-uv@v3
with:
version: ">=0.4.18"
- run: uv tool install tox
- run: uvx tox -e ${{ matrix.toxenv }}
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
requires =
tox>=4
env_list = py{38,39,310,311,312}, deps
env_list = py{38,39,310,311,312,313}, deps

[testenv]
deps =
Expand Down

0 comments on commit 5ad434e

Please sign in to comment.