Skip to content

Commit

Permalink
Bump the deps group across 1 directory with 3 updates (#1353)
Browse files Browse the repository at this point in the history
* Bump the deps group across 1 directory with 3 updates

Bumps the deps group with 3 updates in the /requirements directory: [coverage](https://github.com/nedbat/coveragepy), [sphinx](https://github.com/sphinx-doc/sphinx) and [typos](https://github.com/crate-ci/typos).


Updates `coverage` from 7.6.1 to 7.6.3
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.1...7.6.3)

Updates `sphinx` from 8.0.2 to 8.1.3
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v8.0.2...v8.1.3)

Updates `typos` from 1.25.0 to 1.26.0
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@v1.25.0...v1.26.0)

---
updated-dependencies:
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: sphinx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: typos
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix coverage version range

* Simplify requirements

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pawel Lipski <[email protected]>
  • Loading branch information
dependabot[bot] and PawelLipski authored Oct 14, 2024
1 parent 8f1723f commit 8f48107
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
11 changes: 6 additions & 5 deletions requirements/coverage.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
coverage==6.2; python_version <= '3.6'
coverage==7.2.7; python_version >= '3.7' and python_version < '3.8'
coverage==7.6.1; python_version >= '3.8'
coverage==6.2; python_version == '3.6'
coverage==7.2.7; python_version == '3.7'
coverage==7.6.1; python_version == '3.8'
coverage==7.6.3; python_version >= '3.9'

pytest-cov==4.0.0; python_version <= '3.6'
pytest-cov==4.1.0; python_version >= '3.7' and python_version < '3.8'
pytest-cov==4.0.0; python_version == '3.6'
pytest-cov==4.1.0; python_version == '3.7'
pytest-cov==5.0.0; python_version >= '3.8'
4 changes: 2 additions & 2 deletions requirements/mypy.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mypy==0.971; python_version <= '3.6'
mypy==1.4.1; python_version >= '3.7' and python_version < '3.8'
mypy==0.971; python_version == '3.6'
mypy==1.4.1; python_version == '3.7'
mypy==1.11.2; python_version >= '3.8'
2 changes: 1 addition & 1 deletion requirements/sphinx-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# broke the build despite no explicit update to deps.
pydata-sphinx-theme==0.15.4

sphinx==8.0.2
sphinx==8.1.3
sphinx-book-theme==1.1.3
12 changes: 6 additions & 6 deletions requirements/testenv.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pytest==7.0.1; python_version <= '3.6'
pytest==7.4.4; python_version >= '3.7' and python_version < '3.8'
pytest==7.0.1; python_version == '3.6'
pytest==7.4.4; python_version == '3.7'
pytest==8.3.3; python_version >= '3.8'

pytest-clarity==1.0.1

pytest-mock==3.6.1; python_version <= '3.6'
pytest-mock==3.11.1; python_version >= '3.7' and python_version < '3.8'
pytest-mock==3.6.1; python_version == '3.6'
pytest-mock==3.11.1; python_version == '3.7'
pytest-mock==3.14.0; python_version >= '3.8'

pytest-xdist==2.4.0; python_version <= '3.6'
pytest-xdist==3.5.0; python_version >= '3.7' and python_version < '3.8'
pytest-xdist==2.4.0; python_version == '3.6'
pytest-xdist==3.5.0; python_version == '3.7'
pytest-xdist==3.6.1; python_version >= '3.8'
2 changes: 1 addition & 1 deletion requirements/typos.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
typos==1.25.0
typos==1.26.0

0 comments on commit 8f48107

Please sign in to comment.