Skip to content

Commit

Permalink
Merge pull request #82 from newton-per-sqm/76-add-python-312-support
Browse files Browse the repository at this point in the history
76 Add Python 3.12 support (pytest)
  • Loading branch information
THuckemann authored Mar 8, 2024
2 parents d2c42cf + 80e63be commit b1d15b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build-and-pytest:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ htmlcov/
coverage.xml

.spyproject/
.vscode/
2 changes: 1 addition & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ black
flake8
mypy

pytest
pytest<8
pytest-cov
pytest-cases
pytest-mock
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ source = [

[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'

[tool.isort]
Expand Down

0 comments on commit b1d15b3

Please sign in to comment.