pypa / pipfile

Other
3.24k stars 144 forks source link

Outdated README example? #69

Closed haochi closed 7 years ago

haochi commented 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.

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?

Also one is development and the other is develop.

kennethreitz commented 7 years ago

Let's take a look at what pipenv is doing and update the readme from there.

kennethreitz commented 7 years ago

Updated!

kennethreitz commented 7 years ago

Thanks @haochi