Skip to content

Commit

Permalink
Only require tomli in old Python versions (#74)
Browse files Browse the repository at this point in the history
This partly reverts d3620c6.
  • Loading branch information
jspricke committed Jan 28, 2024
1 parent 01ecc40 commit 5bdc45d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python-lsp-server
mypy >= 0.981
tomli >= 1.1.0
tomli >= 1.1.0 ; python_version < "3.11"
black
pre-commit
rstcheck
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ packages = find:
install_requires =
python-lsp-server >=1.7.0
mypy >= 0.981
tomli >= 1.1.0
tomli >= 1.1.0 ; python_version < "3.11"

[flake8]
max-complexity = 20
Expand Down

0 comments on commit 5bdc45d

Please sign in to comment.