Skip to content

Commit e08f6b7

Browse files
committedNov 1, 2024
update
1 parent dc4c6c8 commit e08f6b7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎.github/workflows/linting.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
persist-credentials: false
2626
fetch-depth: 0
2727

28-
- name: Set up Python 3.11
28+
- name: Set up Python 3.12
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: "3.11"
31+
python-version: "3.12"
3232

3333
- name: Set up Poetry
3434
run: |

‎.github/workflows/testing.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ jobs:
4242
os:
4343
- ubuntu-latest
4444
python-version:
45-
- "3.8"
46-
- "3.9"
45+
# - "3.8"
46+
# - "3.9"
4747
- "3.10"
4848
- "3.11"
49-
# - "3.12-dev"
49+
- "3.12"
5050
# include:
5151
# # Run 3.12 tests with relaxed constraints
5252
# - python-version: "3.12-dev"

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ targets = ["src", "tests"]
3131
[tool.black]
3232
include = '\.py$' # regex -> single-quotes
3333
line-length = 120
34-
profile = "black"
35-
target-version = ["py311"]
34+
# profile = "black"
35+
target-version = ["py312"]
3636

3737

3838
[tool.coverage.html]

0 commit comments

Comments
 (0)