Skip to content

Commit

Permalink
Update coverage requirement from <7.5,>=5.3 to >=5.3,<7.6 (#333)
Browse files Browse the repository at this point in the history
* Update coverage requirement from <7.5,>=5.3 to >=5.3,<7.6

Updates the requirements on [coverage](https://github.com/nedbat/coveragepy) to permit the latest version.
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@coverage-5.3...7.5.0)

---
updated-dependencies:
- dependency-name: coverage
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update pyproject.toml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zane Selvans <zane.selvans@catalyst.coop>
  • Loading branch information
dependabot[bot] and zaneselvans committed Apr 29, 2024
1 parent 6b8987b commit 2db4245
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pyproject.toml
Expand Up @@ -32,32 +32,32 @@ classifiers = [

[project.optional-dependencies]
dev = [
"ruff>=0.3,<0.5",
"build>=1.0,<1.3",
"ruff>=0.4,<0.5",
"build>=1.2,<1.3",
"tox>=4.0,<4.16", # Python test environment manager
"twine>=3.3,<5.1", # Used to make releases to PyPI
"types-requests",
]

docs = [
"doc8>=0.9,<1.2", # Ensures clean documentation formatting
"doc8>=1.1,<1.2", # Ensures clean documentation formatting
"furo>=2022.4.7",
"sphinx>=4,!=5.1.0,<7.3.8", # The default Python documentation engine
"sphinx-autoapi>=1.8,<3.1", # Generates documentation from docstrings
"sphinx>=7,<7.3.8", # The default Python documentation engine
"sphinx-autoapi>=3,<3.1", # Generates documentation from docstrings
"sphinx-issues>=1.2,<4.2", # Allows references to GitHub issues
]

tests = [
"coverage>=5.3,<7.5", # Lets us track what code is being tested
"doc8>=0.9,<1.2", # Ensures clean documentation formatting
"pre-commit>=2.9,<3.8", # Allow us to run pre-commit hooks in testing
"pydocstyle>=5.1,<6.4", # Style guidelines for Python documentation
"pytest>=6.2,<8.3", # Our testing framework
"coverage>=7,<7.6", # Lets us track what code is being tested
"doc8>=1.1,<1.2", # Ensures clean documentation formatting
"pre-commit>=3,<3.8", # Allow us to run pre-commit hooks in testing
"pydocstyle>=6,<6.4", # Style guidelines for Python documentation
"pytest>=8,<8.3", # Our testing framework
"pytest-asyncio>=0.20,<0.24", # Test async functions
"pytest-console-scripts>=1.1,<1.5", # Allow automatic testing of scripts
"pytest-cov>=2.10,<5.1", # Pytest plugin for working with coverage
"pytest-cov>=5,<5.1", # Pytest plugin for working with coverage
"pytest-mock>=3.0,<3.15", # Pytest plugin for mocking function calls and objects
"ruff>=0.3,<0.5",
"ruff>=0.4,<0.5",
]

[project.scripts]
Expand Down

0 comments on commit 2db4245

Please sign in to comment.