Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
change how deps are managed
The way dependencies were managed isn't the way which is recommended
by pipenv. Dependencies shouldn't be pinned to any version unless we
want to really pin it to a specific version for specific reasons.
Correct versions to install are in the lockfile. @dependabot helps
us to keep the lockfile updated, preparing PRs for each library when
it gets a new version.
  • Loading branch information
honzajavorek committed Mar 29, 2022
1 parent 5fabe18 commit fe3d0fe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
26 changes: 11 additions & 15 deletions Pipfile
Expand Up @@ -11,26 +11,22 @@ serve = "python pyvecorg serve"
deploy = "python pyvecorg deploy --push"

[packages]
# Pinning packages with ~= unless their version starts with 0.,
# then pinning each version strictly with ==
flask = "*"
elsa = "==0.1.6"
markdown = "~=3.3"
pyyaml = "~=6.0"
requests = "~=2.27.1"
python-slugify = "~=6.1.1"
pillow = "~=9.0.1"
elsa = "*"
markdown = "*"
pyyaml = "*"
requests = "*"
python-slugify = "*"
pillow = "*"
gspread = "*"
oauth2client = "~=4.1.3"
oauth2client = "*"
markupsafe = "*"

[dev-packages]
# Pinning packages with ~= unless their version starts with 0.,
# then pinning each version strictly with ==
pipfile = "==0.0.2"
pylama = "~=8.3.8"
pytest = "~=7.1.1"
jsonschema = "~=4.4.0"
pipfile = "*"
pylama = "*"
pytest = "*"
jsonschema = "*"

[requires]
python_version = "3.9"
2 changes: 1 addition & 1 deletion Pipfile.lock

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

0 comments on commit fe3d0fe

Please sign in to comment.