Last active
October 24, 2021 20:18
-
-
Save philipsd6/5f366f170b4b5057e9ed17cad89e718c to your computer and use it in GitHub Desktop.
python-poetry/poetry issue #4674
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 = "testing-poetry" | |
description = "poetry update reinstalls same versions" | |
version = "0.1.0" | |
authors = ["Me <[email protected]>"] | |
readme = "README.md" | |
[tool.poetry.dependencies] | |
python = "^3.9" | |
fastapi = "^0.68.0" | |
pydantic = "^1.8.2" | |
uvicorn = "^0.15.0" | |
[tool.poetry.dev-dependencies] | |
black = "^21.9b0" | |
pre-commit = "^2.15.0" | |
pre-commit-hooks = "^4.0.1" | |
reorder-python-imports = "^2.6.0" | |
[build-system] | |
requires = ["poetry>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | |
[[tool.poetry.source]] | |
name = "artifactory" | |
default = true | |
url = "https://internal-repository/api/pypi/pypi/simple" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment