Skip to content

Commit

Permalink
fix(deps): regression too strict version requirements #136
Browse files Browse the repository at this point in the history
  • Loading branch information
trallnag committed May 3, 2022
1 parent 1ef3f43 commit 36bc045
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 34 deletions.
132 changes: 101 additions & 31 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ repository = "https://github.com/trallnag/prometheus-fastapi-instrumentator"
keywords = ["prometheus", "instrumentation", "fastapi", "exporter", "metrics"]

[tool.poetry.dependencies]
python = "^3.7.0"
fastapi = "^0.38.1"
prometheus-client = "^0.8.0"
python = ">= 3.7.0, < 4.0.0"
fastapi = ">= 0.38.1, < 1.0.0"
prometheus-client = ">= 0.8.0, < 1.0.0"

[tool.poetry.dev-dependencies]
black = "^22.3.0"
Expand Down

0 comments on commit 36bc045

Please sign in to comment.