Skip to content

Preserve comments #91

@jshwi

Description

@jshwi

This might be worthwhile looking into

Before pipenv-setup sync --pipfile

setup(
    ...
    include_package_data=True,
    zip_safe=False,
    install_requires=[
        "appdirs>=1.4.4, <=2.0.0",
        # appears the version needs to be strictly specified in order
        # for `pipenv` to allow locking without the additional argument
        "black==21.7b0",
        ...
    ],
    ...
)

After pipenv-setup sync --pipfile

setup(
    ...
    include_package_data=True,
    zip_safe=False,
    install_requires=[
        "appdirs>=1.4.4, <=2.0.0",
        "black==21.7b0",
        ...
    ],
    ...
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions