Skip to content

Commit

Permalink
Merge branch 'main' into feat/LLDP
Browse files Browse the repository at this point in the history
  • Loading branch information
carl-baillargeon authored Nov 7, 2024
2 parents a256bd3 + 634b1ec commit f10c143
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
needs: file-changes
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
needs: [lint-python, type-python]
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand Down Expand Up @@ -149,4 +149,4 @@ jobs:
uses: CodSpeedHQ/action@v3
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: pytest --codspeed --no-cov --log-cli-level INFO tests/benchmark
run: pytest --codspeed --no-cov --log-cli-level INFO tests/benchmark
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
Expand Down Expand Up @@ -238,7 +239,7 @@ envlist =
clean,
lint,
type,
py{39,310,311,312},
py{39,310,311,312,313},
report
[gh-actions]
Expand All @@ -247,6 +248,7 @@ python =
3.10: py310
3.11: erase, py311, report
3.12: py312
3.13: py313
[testenv]
description = Run pytest with {basepython}
Expand Down

0 comments on commit f10c143

Please sign in to comment.