Skip to content

Commit

Permalink
Locking down packages manually until pipenv matures enough
Browse files Browse the repository at this point in the history
Sadly due to several issues with Pipfile.lock, it seems to either hang or take forever as seen here pypa/pipenv#2284 here pypa/pipenv#1816 and here pypa/pipenv#356 making it extremely unusuable
For that reason instead of switching to an alternative solution, I have decided to pin all the dependencies so that this project doesn't start failing with breaking changes in the future
I will probably come back here and generate lock and use semver minors/patches only once pipenv have matured enough, good luck to its developers!
  • Loading branch information
Mathspy committed Jul 22, 2018
1 parent 413c06d commit 7101051
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ verify_ssl = true
name = "pypi"

[packages]
numpy = "*"
tensorflow = "*"
pytest = "*"
"h5py" = "*"
pyyaml = "*"
tensorflowjs = "*"
numpy = "==1.14.1"
tensorflow = "==1.9.0"
"h5py" = "==2.7.1"
pyyaml = "==3.13"
tensorflowjs = "==0.5.2"

[dev-packages]
pytest = "==3.6.3"

[requires]
python_version = "3.6"

[scripts]
test = "pytest"

0 comments on commit 7101051

Please sign in to comment.