Skip to content

Commit

Permalink
fix(deps): target pylint <2.13 when on py3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <bradenmars@bradenmars.me>
  • Loading branch information
BradenM committed Mar 19, 2023
1 parent a8af251 commit 80dc833
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 7 deletions.
9 changes: 5 additions & 4 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pyobjc-framework-libdispatch==8.5.1 ; python_version >= "3.7" and python_version
pyreadline==2.1 ; python_version < "3.10" and sys_platform == "win32" and python_version >= "3.7"
pyrsistent==0.19.2 ; python_version >= "3.7" and python_version < "3.12"
pyserial==3.5 ; python_version < "3.12" and python_version >= "3.7"
python-minifier==2.8.0 ; python_version >= "3.7" and python_version < "3.12"
python-minifier==2.8.1 ; python_version >= "3.7" and python_version < "3.12"
python-nmap==0.7.1 ; python_version >= "3.7" and python_version < "3.12"
pytz==2022.6 ; python_version >= "3.7" and python_version < "3.12"
pyudev==0.24.0 ; python_version < "3.10" and python_version >= "3.7" or python_version < "3.12" and sys_platform != "win32" and python_version >= "3.7"
Expand All @@ -57,13 +57,14 @@ setuptools==65.5.1 ; python_version >= "3.7" and python_version < "3.12"
six==1.16.0 ; python_version >= "3.7" and python_version < "3.12"
smmap==5.0.0 ; python_version >= "3.7" and python_version < "3.12"
snowballstemmer==2.2.0 ; python_version >= "3.7" and python_version < "3.12"
sphinx-autodoc-typehints==1.19.5 ; python_version >= "3.7" and python_version < "3.12"
sphinx-click==4.3.0 ; python_version >= "3.7" and python_version < "3.12"
sphinx-rtd-theme==1.1.1 ; python_version >= "3.7" and python_version < "3.12"
sphinx-autodoc-typehints==1.22 ; python_version >= "3.7" and python_version < "3.12"
sphinx-click==4.4.0 ; python_version >= "3.7" and python_version < "3.12"
sphinx-rtd-theme==1.2.0 ; python_version >= "3.7" and python_version < "3.12"
sphinx==5.3.0 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-applehelp==1.0.2 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-devhelp==1.0.2 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-htmlhelp==2.0.0 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-jquery==4.1 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-qthelp==1.0.3 ; python_version >= "3.7" and python_version < "3.12"
sphinxcontrib-serializinghtml==1.1.5 ; python_version >= "3.7" and python_version < "3.12"
Expand Down
128 changes: 126 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ bump2version = "^0.5.11"
pre-commit = { version="^3.0.2", python=">=3.8" }
mypy = { version = "^1.0", extras = ["dmypy"] }
types-requests = "^2.27.14"
pylint = "^2.7"
pylint = [
{ version = "^2.7", python = ">=3.8" },
{ version = ">=2.7,<2.13", python = "<3.8" },
]
better-exceptions = "^0.3.3"

[tool.poetry.group.lint]
Expand Down

0 comments on commit 80dc833

Please sign in to comment.