Skip to content

Commit

Permalink
Build binaries for Python 3.11 (#4374)
Browse files Browse the repository at this point in the history
* build binaries for python 3.11

* add change

* [skip ci] revert CI if comment

* add 3.11 to pypi classifiers
  • Loading branch information
samuelcolvin committed Aug 14, 2022
1 parent c24d33e commit cc68900
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
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

0 comments on commit cc68900

Please sign in to comment.