Skip to content

Commit

Permalink
set floors on runtime dependencies (fixes #272) (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored Nov 8, 2024
1 parent 3e1f74c commit 471660e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ repos:
args: ["--config-file", "pyproject.toml"]
exclude: "tests"
additional_dependencies:
- click
- tomli
- click>=8.0
- tomli>=1.1.0
- types-requests
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
Expand Down Expand Up @@ -49,6 +49,6 @@ repos:
- id: rstcheck
args: ["--config=pyproject.toml"]
additional_dependencies:
- click
- click>=8.0
- sphinx>=7.3
- sphinx-click>=6.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ classifiers = [
"Topic :: Utilities"
]
dependencies = [
"click",
"tomli ; python_version < '3.11'"
"click>=8.0",
"tomli>=1.1.0 ; python_version < '3.11'"
]
description = "Inspect Python package distributions and raise warnings on common problems."
keywords = [
Expand Down

0 comments on commit 471660e

Please sign in to comment.