Skip to content

Commit

Permalink
Bump the pip-version group with 5 updates (#995)
Browse files Browse the repository at this point in the history
* Bump the pip-version group with 5 updates

Bumps the pip-version group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [coverage](https://github.com/nedbat/coveragepy) | `7.4.4` | `7.5.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.1.1` | `8.2.0` |
| [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) | `3.5.0` | `3.6.1` |
| [h5py](https://github.com/h5py/h5py) | `3.10.0` | `3.11.0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.1` | `2.2.2` |


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

Updates `pytest` from 8.1.1 to 8.2.0
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.1.1...8.2.0)

Updates `pytest-xdist` from 3.5.0 to 3.6.1
- [Release notes](https://github.com/pytest-dev/pytest-xdist/releases)
- [Changelog](https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-xdist@v3.5.0...v3.6.1)

Updates `h5py` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/h5py/h5py/releases)
- [Changelog](https://github.com/h5py/h5py/blob/master/docs/release_guide.rst)
- [Commits](h5py/h5py@3.10.0...3.11.0)

Updates `pandas` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.1...v2.2.2)

---
updated-dependencies:
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-version
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-version
- dependency-name: pytest-xdist
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-version
- dependency-name: h5py
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-version
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-version
...

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

* Try changing requirements for ARM Mac runners.

* Use earliest pandas wheels for macOS ARM.

* Update h5py and pandas.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
dependabot[bot] and bdice authored May 1, 2024
1 parent 7ade007 commit 9174ad2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci-oldest-reqs.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
click==7.1.2
coverage==5.3.1
filelock==3.0.0
h5py==2.10.0
numpy==1.19.0
h5py==2.10.0; platform_machine != "arm64" or platform_system != "Darwin"
h5py==3.7.0; platform_machine == "arm64" or platform_system == "Darwin"
numpy==1.19.0; platform_machine != "arm64" or platform_system != "Darwin"
numpy==1.21.0; platform_machine == "arm64" and platform_system == "Darwin"
packaging==15.0
pandas==1.0.0
pandas==1.0.0; platform_machine != "arm64" or platform_system != "Darwin"
pandas==1.4.0; platform_machine == "arm64" and platform_system == "Darwin"
pytest==6.2.1
pytest-cov==2.10.1
pytest-xdist==2.5.0
tables==3.6.1
tables==3.6.1; platform_machine != "arm64" or platform_system != "Darwin"
tqdm==4.10.0
6 changes: 3 additions & 3 deletions requirements/requirements-test-optional.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
h5py==3.10.0; implementation_name=='cpython'
h5py==3.11.0; implementation_name=='cpython'
numpy==1.26.4
pandas==2.2.1; implementation_name=='cpython'
tables==3.9.2; implementation_name=='cpython'
pandas==2.2.2; implementation_name=='cpython'
tables==3.9.2; implementation_name=='cpython' and platform_machine != "arm64" or platform_system != "Darwin"
6 changes: 3 additions & 3 deletions requirements/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
coverage==7.4.4
pytest==8.1.1
coverage==7.5.0
pytest==8.2.0
pytest-cov==5.0.0
pytest-xdist==3.5.0
pytest-xdist==3.6.1

0 comments on commit 9174ad2

Please sign in to comment.