Skip to content

Commit

Permalink
Remove upper bound on pydantic.
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig authored and tombh committed Oct 25, 2022
1 parent 00790cb commit 998cac5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning][semver].
### Changed
### Fixed

## [0.12.4] - 24/10/2022
### Fixed
- Remove upper bound on Pydantic when Python is <3.11

## [0.12.3] - 24/10/2022
### Fixed
- Require Pydantic 1.10.2 when Python is 3.11
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [DeathAxe](https://github.com/deathaxe)
- [Denis Loginov](https://github.com/dinvlad)
- [Jérome Perrin](https://github.com/perrinjerome)
- [Karthik Nadig](https://github.com/karthiknadig)
- [Laurence Warne](https://github.com/LaurenceWarne)
- [Matej Kašťák](https://github.com/MatejKastak)
- [Max O'Cull](https://github.com/Maxattax97)
Expand Down
2 changes: 1 addition & 1 deletion pygls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import os
import sys

__version__ = "0.12.3"
__version__ = "0.12.4"

IS_WIN = os.name == 'nt'
IS_PYODIDE = 'pyodide' in sys.modules
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ python_requires = >=3.7,<3.12
packages = find:
zip_safe = False
install_requires =
pydantic>=1.9.1,<1.10 ; python_version<"3.11"
pydantic>=1.9.1 ; python_version<"3.11"
pydantic>=1.10.2 ; python_version>="3.11"
typeguard>=2.10.0,<3
include_package_data = True
Expand Down

0 comments on commit 998cac5

Please sign in to comment.