Skip to content

Commit ca7183c

Browse files
authored
Confirm Python 3.12 support (#174)
1 parent b850ad1 commit ca7183c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
os: [ubuntu, macos, windows]
35-
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
35+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
3636

3737
env:
3838
PYTHON: ${{ matrix.python }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
'Programming Language :: Python :: 3.9',
2626
'Programming Language :: Python :: 3.10',
2727
'Programming Language :: Python :: 3.11',
28+
'Programming Language :: Python :: 3.12',
2829
'Intended Audience :: Developers',
2930
'Intended Audience :: Information Technology',
3031
'Intended Audience :: System Administrators',
@@ -40,7 +41,7 @@ classifiers = [
4041
]
4142
requires-python = '>=3.7'
4243
dependencies = [
43-
'pydantic>=2.0.1',
44+
'pydantic>=2.3.0',
4445
'python-dotenv>=0.21.0',
4546
]
4647
dynamic = ['version']

requirements/pyproject.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
#
77
annotated-types==0.4.0
88
# via pydantic
9-
pydantic==2.0.1
9+
pydantic==2.4.2
1010
# via pydantic-settings (pyproject.toml)
11-
pydantic-core==2.0.2
11+
pydantic-core==2.10.1
1212
# via pydantic
1313
python-dotenv==0.21.1
1414
# via pydantic-settings (pyproject.toml)
1515
typing-extensions==4.6.2
1616
# via
17+
# annotated-types
1718
# pydantic
1819
# pydantic-core

requirements/testing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pluggy==1.0.0
3737
# via pytest
3838
pygments==2.15.1
3939
# via rich
40-
pytest==7.3.1
40+
pytest==7.3.2
4141
# via
4242
# -r requirements/testing.in
4343
# pytest-examples

0 commit comments

Comments
 (0)