Skip to content

Commit

Permalink
👷 Add py312 check in action and build target in pdm config.
Browse files Browse the repository at this point in the history
  • Loading branch information
BalconyJH committed Oct 17, 2024
1 parent eaf31fb commit 90b9e15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
fail-fast: false
env:
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tool = [
includes = ["dynrender_skia"]
[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311"]
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
Expand Down Expand Up @@ -97,8 +97,10 @@ executionEnvironments = [
typeCheckingMode = "basic"
reportShadowedImports = false
disableBytesTypePromotions = true

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[pytest]
asyncio_mode = "auto"

0 comments on commit 90b9e15

Please sign in to comment.