Skip to content

Commit

Permalink
chore: Pin exact version dependencies
Browse files Browse the repository at this point in the history
Pinning ranges might conflict with yanked packages.
  • Loading branch information
jgraichen committed Mar 9, 2024
1 parent c930f62 commit 23c3125
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ pillar_dirs = "salt_tower.loader:pillar_dirs"
render_dirs = "salt_tower.loader:renderers_dirs"

[project.optional-dependencies]
test = ["pylint~=3.1.0", "pytest~=8.0.0"]
test = ["pylint==3.1.0", "pytest==8.0.0"]
docs = [
"mike~=2.0.0",
"mkdocs-awesome-pages-plugin~=2.9.1",
"mkdocs-git-revision-date-plugin~=0.3.2",
'mkdocs-material~=9.5.0',
"mike==2.0.0",
"mkdocs-awesome-pages-plugin==2.9.1",
"mkdocs-git-revision-date-plugin==0.3.2",
'mkdocs-material==9.5.0',
"setuptools", # required by mike
]

Expand All @@ -42,11 +42,11 @@ target_version = ["py36", "py37", "py38"]

[tool.pdm.dev-dependencies]
dev = [
"black~=24.2.0",
"mypy~=1.3",
"pylint~=3.1.0",
"pytest~=8.0.0",
"tox~=4.14.0",
"black==24.2.0",
"mypy==1.3",
"pylint==3.1.0",
"pytest==8.0.0",
"tox==4.14.0",
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit 23c3125

Please sign in to comment.