-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade version of pip and setuptools
Need newer setuptools greater than 64.
- Loading branch information
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,19 +51,17 @@ jobs: | |
# Show installed pkg information for postmortem diagnostic | ||
- name: List installed packages | ||
run: | | ||
micromamba list | ||
which gmt | ||
echo ${{ github.workspace }} | ||
run: micromamba list | ||
|
||
# Run the benchmark tests | ||
- name: Run benchmarks | ||
uses: CodSpeedHQ/[email protected] | ||
with: | ||
run: | | ||
python -m pip install numpy pandas xarray netCDF4 packaging \ | ||
python -m pip install -U pip | ||
python -m pip install -U numpy pandas xarray netCDF4 packaging \ | ||
pytest pytest-benchmark pytest-codspeed \ | ||
setuptools | ||
'setuptools>64' | ||
python -m pip list | ||
make install | ||
make test PYTEST_EXTRA="-r P --codspeed" | ||
|