Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
examples: set upper version constraint for dependencies to avoid unex…
Browse files Browse the repository at this point in the history
…pected breaking changes

https://semver.org/#spec-item-8
  • Loading branch information
fphammerle committed May 5, 2019
1 parent a17baf9 commit dac2491
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 29 deletions.
8 changes: 4 additions & 4 deletions examples/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ name = "pypi"

[packages]
freesurfer-volume-reader = {editable = true, path = "./.."}
pandas = "*"
matplotlib = "*"
seaborn = "*"
pandas = "<1"
matplotlib = "<4"
seaborn = "<1"

[dev-packages]
pylint = ">=2.3.0"
pylint = ">=2.3.0,<3"

[requires]
python_version = "3"
49 changes: 24 additions & 25 deletions examples/Pipfile.lock

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

0 comments on commit dac2491

Please sign in to comment.