Skip to content

Commit

Permalink
Downgrade pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Sep 27, 2022
1 parent 6cb0d04 commit 8cf003f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@
{
matchUpdateTypes: ['patch'],
groupName: 'all patch versions',
automerge: true,
},
{
matchUpdateTypes: ['minor'],
groupName: 'all minor versions',
automerge: true,
},
/** Group Poetry packages */
{
Expand All @@ -53,6 +51,11 @@
separateMajorMinor: false,
separateMinorPatch: false,
},
/** No update for pipenv */
{
matchPackageNames: ['pipenv'],
enabled: false,
},
/** Update dpkg versions every day */
{
matchPaths: ['^ci/dpkg-versions.yaml$'],
Expand Down
2 changes: 1 addition & 1 deletion c2cciutils/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import safety.safety
import safety.util
import yaml
from pipenv.utils import pipfile as pipfile_lib
from pipenv.patched import pipfile as pipfile_lib

import c2cciutils.configuration
import c2cciutils.security
Expand Down
30 changes: 26 additions & 4 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ c2cciutils-docker-versions-gen = "c2cciutils.scripts.docker_versions_gen:main"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pipenv = { version = "2022.9.24", optional = true }
pipenv = { version = "2022.9.8", optional = true }
safety = "2.2.0"
markdown-table = "2020.12.3"
python-magic = "0.4.27"
Expand Down

0 comments on commit 8cf003f

Please sign in to comment.