Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Confirm Python 3.12 support #174

Merged
merged 3 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

env:
PYTHON: ${{ matrix.python }}
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
Expand All @@ -40,7 +41,7 @@ classifiers = [
]
requires-python = '>=3.7'
dependencies = [
'pydantic>=2.0.1',
'pydantic>=2.3.0',
'python-dotenv>=0.21.0',
]
dynamic = ['version']
Expand Down
5 changes: 3 additions & 2 deletions requirements/pyproject.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
#
annotated-types==0.4.0
# via pydantic
pydantic==2.0.1
pydantic==2.4.2
# via pydantic-settings (pyproject.toml)
pydantic-core==2.0.2
pydantic-core==2.10.1
# via pydantic
python-dotenv==0.21.1
# via pydantic-settings (pyproject.toml)
typing-extensions==4.6.2
# via
# annotated-types
# pydantic
# pydantic-core
2 changes: 1 addition & 1 deletion requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pluggy==1.0.0
# via pytest
pygments==2.15.1
# via rich
pytest==7.3.1
pytest==7.3.2
# via
# -r requirements/testing.in
# pytest-examples
Expand Down
Loading