mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 06:46:15 +00:00
7520f6983b
* Top level Pipfile sys_platform markers should be transitive * Add platform_machine top level specifier * Handle case where markers is None * more safety checks * relock on python 3.7 --------- Co-authored-by: Christian Clauss <cclauss@me.com>
44 lines
1.2 KiB
TOML
44 lines
1.2 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="*", sys_platform = "== 'linux'"}
|
|
zipp = {version = "==3.6.0", markers = "python_version < '3.10'"}
|
|
pre-commit = "==2.*"
|
|
atomicwrites = {version = "*", sys_platform = "== 'win32'"}
|
|
pytest-cov = "==3.*"
|
|
pluggy = "==1.2.0" # Can be removed from Pipfile when dropping py 3.7
|
|
filelock = "==3.12.2" # Can be removed from Pipfile when dropping py 3.7
|
|
coverage = "==7.2.7" # Can be removed from Pipfile when dropping py 3.7
|
|
typing-extensions = "==4.*"
|
|
waitress = {version = "*", sys_platform = "== 'win32'"}
|
|
gunicorn = {version = "*", sys_platform = "== 'linux'"}
|
|
parse = "*"
|
|
importlib-metadata = {version = "*"}
|
|
colorama= {version = "*", sys_platform = "== 'win32'"}
|
|
myst-parser = {extras = ["linkify"], version = "*"}
|
|
invoke = "==2.0.0"
|
|
exceptiongroup = "==1.1.0"
|
|
tomli = "*"
|
|
pyyaml = "==6.0.1"
|
|
build = "*"
|
|
twine = "*"
|
|
|
|
[packages]
|
|
pytz = "*"
|
|
|
|
[scripts]
|
|
tests = "bash ./run-tests.sh"
|
|
test = "pytest -vvs"
|
|
|
|
[pipenv]
|
|
allow_prereleases = true
|