Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

Commit

Permalink
Improve packages pinning
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval9313 committed Feb 2, 2022
1 parent 4d4a0e5 commit 1bf31bc
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 37 deletions.
68 changes: 37 additions & 31 deletions poetry.lock

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

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ classifiers = [
python = "^3.6.2"

dataclasses = {version = "^0.8", python = "~3.6.2"}
fastapi = "*"
pydantic = "^1.0"
sqlalchemy = { version = "^1.3.12", optional = true }
psutil = "^5.8.0"
fastapi = "^0"
pydantic = "^1"
sqlalchemy = { version = "^1", optional = true }
psutil = "^5"

[tool.poetry.dev-dependencies]
# Starlette features
Expand All @@ -54,7 +54,7 @@ aiofiles = "*" # Serving static files
requests = "*" # TestClient

# Testing
pytest = "^6.2.5"
pytest = "^6.2"
pytest-cov = "*"
pytest-asyncio = "*"

Expand Down Expand Up @@ -86,7 +86,7 @@ session = ["sqlalchemy"]

[tool.black]
line-length = 120
target_version = ['py38']
target_version = ['py39']
include = '\.pyi?$'
exclude = '''
(
Expand Down

0 comments on commit 1bf31bc

Please sign in to comment.