Created
December 18, 2019 05:37
-
-
Save schinckel/a58ab47bbc89b694208333c21e5aea68 to your computer and use it in GitHub Desktop.
Invalid requirements.txt generation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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