Pipfile:
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aioredis = "*"
[dev-packages]
ipython = "*"
[requires]
python_version = "3.6"
Generate Pipefile.lock for the above, delete Pipfile, and then:
$ pipenv sync
...
$ cat Pipfile.lock
{
"_meta": {
"hash": {
"sha256": "4e55147db217bb4120f6e68cb8cad7bc37011457441ce0eb9d97308315625834"
},
"pipfile-spec": 6,
"requires": {
"python_version": "3.6"
},
"sources": [
{
"name": "pypi",
"url": "https://pypi.python.org/simple",
"verify_ssl": true
}
]
},
"default": {},
"develop": {}
}
Expected result
pipenv installs the packages in Pipfile.lock.
Actual result
pipenv installs no packages and replaces Pipfile.lock with a new file containing no packages.
Pipfile:
Generate Pipefile.lock for the above, delete Pipfile, and then:
Expected result
pipenv installs the packages in Pipfile.lock.
Actual result
pipenv installs no packages and replaces Pipfile.lock with a new file containing no packages.