mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
6ac1451ec8
* Move away from requirementslib models * Revise test since PEP-440 does not support wildcard versions but does support equivalent compatible release specifiers. * simplify and remove dead code * Ensure the os_name marker is AND with the other markers. * Move what we still need from requirementslib into the pipenv utils and stop vendoring it. * Remove requirementslib. * force upgrade of virtualenv for python 3.12 * remove virtualenv-clone * Update vcs specifiers documentation; infer name from specific pip line formats where possible. * Provide helpful text and error for recently removed commands * Set the right log levels and verbosity to show users the errors generated by pip resolver when supplying -v flag * Fix the collection of all matching package hashes for non-pypi indexes. Plus lesson from testing torch which contains local identifiers.
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[dev-packages]
|
|
pipenv = {path = ".", editable = true, extras = ["tests", "dev"]}
|
|
sphinx = "==4.*"
|
|
sphinx-click = "==4.*"
|
|
sphinxcontrib-spelling = "==7.*"
|
|
click = "==8.0.3"
|
|
pypiserver = "==1.*"
|
|
stdeb = {version="*", markers="sys_platform == 'linux'"}
|
|
zipp = {version = "==3.6.0", markers = "python_version < '3.10'"}
|
|
pre-commit = "==2.*"
|
|
atomicwrites = {version = "*", markers="sys_platform == 'win32'"}
|
|
pytest-cov = "==3.*"
|
|
typing-extensions = "==4.*"
|
|
waitress = {version = "*", markers="sys_platform == 'win32'"}
|
|
gunicorn = {version = "*", markers="sys_platform == 'linux'"}
|
|
parse = "*"
|
|
importlib-metadata = {version = "*", markers="python_version < '3.8'"}
|
|
colorama= {version = "*", markers="sys_platform == 'win32'"}
|
|
myst-parser = {extras = ["linkify"], version = "*"}
|
|
invoke = "==2.0.0"
|
|
exceptiongroup = "==1.1.0"
|
|
tomli = "*"
|
|
pyyaml = "==6.0.1"
|
|
|
|
[packages]
|
|
pytz = "*"
|
|
|
|
[scripts]
|
|
tests = "bash ./run-tests.sh"
|
|
test = "pytest -vvs"
|
|
|
|
[pipenv]
|
|
allow_prereleases = true
|