Skip to content

Instantly share code, notes, and snippets.

@SinSquare
Last active September 1, 2021 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SinSquare/e39244e36bf1d5f706108323497f9fc8 to your computer and use it in GitHub Desktop.
Save SinSquare/e39244e36bf1d5f706108323497f9fc8 to your computer and use it in GitHub Desktop.
poetry export wrong requirement conditions
[tool.poetry]
name = "req-test"
version = "0.1.0"
description = ""
authors = ["Abel Katona <abelkatona@flywheel.io>"]
[tool.poetry.dependencies]
python = "^3.8"
crayons = "^0.4.0"
ipython = "^7.24.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
colorama==0.4.4; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
crayons==0.4.0
appnope==0.1.2; sys_platform == "darwin" and python_version >= "3.7"
backcall==0.2.0; python_version >= "3.7"
colorama==0.4.4; python_version >= "3.7" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.7" and python_full_version >= "3.5.0"
crayons==0.4.0
decorator==5.0.9; python_version >= "3.7"
ipython==7.27.0; python_version >= "3.7"
jedi==0.18.0; python_version >= "3.7"
matplotlib-inline==0.1.2; python_version >= "3.7"
parso==0.8.2; python_version >= "3.7"
pexpect==4.8.0; sys_platform != "win32" and python_version >= "3.7"
pickleshare==0.7.5; python_version >= "3.7"
prompt-toolkit==3.0.20; python_full_version >= "3.6.2" and python_version >= "3.7"
ptyprocess==0.7.0; sys_platform != "win32" and python_version >= "3.7"
pygments==2.10.0; python_version >= "3.7"
traitlets==5.1.0; python_version >= "3.7"
wcwidth==0.2.5; python_full_version >= "3.6.2" and python_version >= "3.7"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment