Skip to content

Commit

Permalink
chore: Make dev dependencies resolvable again?
Browse files Browse the repository at this point in the history
`requires-python = ">=3.6.2,<4.0"` always clashes in some way with dev
and docs dependencies that do not care for that python version at all
-.-
  • Loading branch information
jgraichen committed May 9, 2022
1 parent dab936b commit 8635d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ docs = [
"mkdocs-awesome-pages-plugin~=2.5.0; python_version > '3.8'",
"mkdocs-git-revision-date-plugin~=0.3.1; python_version > '3.8'",
'mkdocs-material==8.2.13; python_version >= "3.8"',
"setuptools; python_version > '3.8'", # required by mike
"setuptools", # required by mike
]

[build-system]
Expand All @@ -47,7 +47,7 @@ dev = [
"pylint==2.13.8",
"pytest~=7.0.0",
"tox~=3.23.0",
"jinja2<3.0", # not support by salt
"jinja2<3.0", # not support by salt
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit 8635d65

Please sign in to comment.