Skip to content

Commit

Permalink
Merge pull request #62 from damogranlabs/feature/add-py312-and-py313-…
Browse files Browse the repository at this point in the history
…to-tests

      Feature/add py312 and py313 to tests
  • Loading branch information
FranzBangar authored Nov 30, 2024
2 parents ea64517 + fa95d3c commit 8d9cbb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
pytests:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ line_length = 120
src_paths = ["src", "tests"]

[tool.ruff]
select = ["E", "F", "N", "UP", "YTT", "B", "A", "ARG", "RUF"]
target-version = "py38"
line-length = 120

[tool.ruff.lint]
select = ["E", "F", "N", "UP", "YTT", "B", "A", "ARG", "RUF"]
ignore = ["RUF022"]

[[tool.mypy.overrides]]
module = "scipy,scipy.*,parameterized.*"
ignore_missing_imports = true
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, py311, py312, analysis
envlist = py38, py39, py310, py311, py312, py313, analysis

[testenv]
deps =
Expand Down

0 comments on commit 8d9cbb9

Please sign in to comment.