pipenv-setup icon indicating copy to clipboard operation
pipenv-setup copied to clipboard

sync pipfile/lockfile to setup.py or check dependency and versioning conflicts

Results 29 pipenv-setup issues
Sort by recently updated
recently updated
newest added

## Description Running `pipenv-setup check` for a `Pipfile` that has a range specifier (`~`) in both the `Pipfile` and `setup.py` results in a failed check, even though the dependency has...

Minimal example: hopefully enough to follow as it is an extract from a larger project. Pipfile ``` [[source]] url = "https://pypi.python.org/simple" verify_ssl = true name = "pypi" [packages] uvicorn =...

This might be worthwhile looking into ### Before `pipenv-setup sync --pipfile` ```python setup( ... include_package_data=True, zip_safe=False, install_requires=[ "appdirs>=1.4.4, =1.4.4,

# Summary PR #79 introduces GitHub actions for performing CI/CD. The pipeline executes the test suite across all supported Python versions on multiple operating systems. actions/virtual-environments#4060 updates the `macOS-latest` workflow...

chore

This issue includes the following: * [ ] add CI tests for 3.10 * [ ] make any additional changes to dependencies, code, etc. #89 should be completed first

enhancement

This issue includes the following: * [ ] add CI tests for `3.9` * [ ] make any additional changes to dependencies, code, etc.

We are using black as a dev-package using version 20.8b1 and bringing 19 causes issues. I am assuming you are using black as a library to perform functions vs a...

duplicate

`check` command will fail if `dependency_links` is not present in setup.py. Is it intended that we need an (empty) `dependency_links=[]` in setup.py to get the `ckeck` command passed?

[here](https://travis-ci.org/github/Madoshakalaka/pipenv-setup/jobs/703030521) is the build output Despite [line 275: Done. Your build exited with 0.](https://travis-ci.org/github/Madoshakalaka/pipenv-setup/jobs/703030521#L275) The build hangs and errors out after 10 minutes of inactivity. I have found discussions online...

help wanted