Skip to content

Commit

Permalink
fix: Relax Python version <4
Browse files Browse the repository at this point in the history
Fixes #266
  • Loading branch information
tombh committed Sep 27, 2022
1 parent 259f6eb commit f2ef956
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning][semver].
### Changed
### Fixed

## [0.12.2] - 26/09/2022
### Fixed
- Relaxed the Python version upper bound to `<4`
[#266]: https://github.com/openlawlibrary/pygls/pulls/266

## [0.12.1] - 01/08/2022
### Changed
- `Document` objects now expose a text document's `language_id`
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.1"
__version__ = "0.12.2"

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 @@ -28,7 +28,7 @@ setup_requires =
wheel
setuptools_scm>=3.4.3
toml
python_requires = >=3.7,<3.11
python_requires = >=3.7,<4
packages = find:
zip_safe = False
install_requires =
Expand Down

0 comments on commit f2ef956

Please sign in to comment.