Skip to content

Commit 8d9cbb9

Browse files
authored
Merge pull request #62 from damogranlabs/feature/add-py312-and-py313-to-tests
Feature/add py312 and py313 to tests
2 parents ea64517 + fa95d3c commit 8d9cbb9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
pytests:
77
strategy:
88
matrix:
9-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
9+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1010
fail-fast: false
1111
runs-on: ubuntu-latest
1212
steps:

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,13 @@ line_length = 120
2929
src_paths = ["src", "tests"]
3030

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

35+
[tool.ruff.lint]
36+
select = ["E", "F", "N", "UP", "YTT", "B", "A", "ARG", "RUF"]
37+
ignore = ["RUF022"]
38+
3639
[[tool.mypy.overrides]]
3740
module = "scipy,scipy.*,parameterized.*"
3841
ignore_missing_imports = true

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38, py39, py310, py311, py312, analysis
2+
envlist = py38, py39, py310, py311, py312, py313, analysis
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)