Skip to content

Commit

Permalink
Confirm Python 3.12 support (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani authored Nov 8, 2023
1 parent b850ad1 commit ca7183c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
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

0 comments on commit ca7183c

Please sign in to comment.