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

Build binaries for Python 3.11 #4374

Merged
merged 4 commits into from Aug 14, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -313,7 +313,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu , macos , windows]
python-version: ['7', '8', '9', '10']
python-version: ['7', '8', '9', '10', '11']
include:
- os: ubuntu
platform: linux
Expand Down
1 change: 1 addition & 0 deletions changes/4374-samuelcolvin.md
@@ -0,0 +1 @@
Support Python 3.11, including binaries for 3.11 in PyPI.
2 changes: 1 addition & 1 deletion docs/install.md
Expand Up @@ -4,7 +4,7 @@ Installation is as simple as:
pip install pydantic
```

*pydantic* has no required dependencies except Python 3.7, 3.8, 3.9 or 3.10 and
*pydantic* has no required dependencies except Python 3.7, 3.8, 3.9, 3.10 or 3.11 and
[`typing-extensions`](https://pypi.org/project/typing-extensions/).
If you've got Python 3.7+ and `pip` installed, you're good to go.

Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -108,6 +108,7 @@ def extra(self):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
Expand Down