Skip to content

Instantly share code, notes, and snippets.

@schinckel
Created December 18, 2019 05:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Invalid requirements.txt generation
[tool.poetry]
name = "foo"
version = "0.1.0"
description = ""
authors = ["Matthew Schinckel <matt@schinckel.net>"]
[tool.poetry.dependencies]
django = [
{version = "==1.11.26", python = "~2.7"},
{version = "*", python = ">=3.6"}
]
urllib3 = "*"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
asgiref==3.2.3; python_version >= "3.6"
django==1.11.26; python_version >= "2.7" and python_version < "2.8" or python_version >= "3.6"
django==3.0; python_version >= "3.6"
pytz==2019.3; python_version >= "2.7" and python_version < "2.8" or python_version >= "3.6"
sqlparse==0.3.0; python_version >= "3.6"
urllib3==1.22
urllib3==1.25.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment