Skip to content

Commit

Permalink
Move minimum_requirements.txt to separate directory (#352)
Browse files Browse the repository at this point in the history
Dependabot struggles to get the correct lockfile to update when
both 'poetry.lock' and 'minimum_requirements.txt' are located in
the same directory and creates weird PR descriptions. See e.g.
#351, where
the actual base version is '0.42.1', but the PR mentions
'0.36.1' which is the version from 'minimum_requirements.txt'.

As a simple workaround, we move the 'minimum_requirements.txt' to
a separate directory.
  • Loading branch information
greschd committed Sep 25, 2023
1 parent 2dbb7c5 commit 45920eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ setenv =
PYTHONUNBUFFERED = yes
commands =
poetry install -E test
poetry run python -m pip install -r minimum_requirements.txt
poetry run python -m pip install -r .ci/minimum_requirements.txt
poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} {env:PYTEST_MARKERS:} {posargs:-vv}

[testenv:style]
Expand Down

0 comments on commit 45920eb

Please sign in to comment.