Closed haochi closed 7 years ago
In the README, the develop and default are both JSON arrays, but in the Pipfile.lock file in the examples folder, they are objects. e.g.
develop
default
Pipfile.lock
examples
README:
"development": [ {"name": "nose", "version": "1.3.7", "hash": "..."}, ]
examples/Pipfile.lock:
"develop": { "nose": { "version": "==1.3.7", "hash": "sha256:dadcddc0aefbf99eea214e0f1232b94f2fa9bd98fa8353711dacb112bfcbbb2a" } }
Should it be assumed that the one examples/Pipfile.lock is the current spec since that's the generated format?
examples/Pipfile.lock
Also one is development and the other is develop.
development
Let's take a look at what pipenv is doing and update the readme from there.
Updated!
Thanks @haochi
In the README, the
develop
anddefault
are both JSON arrays, but in thePipfile.lock
file in theexamples
folder, they are objects. e.g.README:
examples/Pipfile.lock:
Should it be assumed that the one
examples/Pipfile.lock
is the current spec since that's the generated format?Also one is
development
and the other isdevelop
.