Skip to content

Commit

Permalink
Apply suggested pyproject.toml changes in issue #408
Browse files Browse the repository at this point in the history
  • Loading branch information
jherland committed Jan 4, 2024
1 parent ef649a8 commit c3b7d2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ fawltydeps = "fawltydeps.main:main"
[tool.poetry.dependencies]
# These are the main dependencies for fawltydeps at runtime.
# Do not add anything here that is only needed by CI/tests/linters/developers
python = "^3.7.2"
importlib_metadata = "=6.6.0"
python = ">=3.7.2"
importlib_metadata = ">=6.6.0"
isort = [
# isort 5.12.0 drops support for Python v3.7:
{version = "^5.10", python = ">=3.8"},
{version = ">=5.10,<5.12.0", python = "<3.8"},
]
pip-requirements-parser = "^32.0.1"
pip-requirements-parser = ">=32.0.1"
pydantic = ">=1.10.4,<3.0.0"
tomli = {version = "^2.0.1", python = "<3.11"}
typing-extensions = {version = "^4.4.0", python = "<3.8"}
setuptools = "^68.0.0"
typing-extensions = {version = ">=4.4.0", python = "<3.8"}
setuptools = ">=68.0.0"

[tool.poetry.group.nox]
optional = true
Expand Down

0 comments on commit c3b7d2d

Please sign in to comment.