Skip to content

Commit

Permalink
Also bump pip from 23.2.1 to 23.3 in environment.yml
Browse files Browse the repository at this point in the history
docs/environment_files/environment.yml
- Now use pip==23.3 to be consistent with setup.py

.github/workflows/build-gcpy-environment.py
- Now trigger this Action for dependabot/* branches, so that we can
  test the environment build with suggested package updates.
- Also use actions/checkout@v3 to avoid deprecated Node.js warnings

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca committed Jan 26, 2024
1 parent 154834a commit 0560b12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-gcpy-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: build-gcpy-environment

on:
push:
branches: [ "main", "dev" ]
branches: [ "main", "dev", "dependabot/*" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main", "dev" ]
Expand All @@ -20,7 +20,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout the GCPy repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Create "gcpy_env" environment
uses: mamba-org/setup-micromamba@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to GCPy will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - TBD

### Changed
- Bump pip from 23.2.1 to 23.3 (dependabot suggested this)

## [1.4.2] - 2024-01-26
### Added
- Example script `create_test_plot.py`, which can be used to check that GCPy has been installed properly
Expand Down
2 changes: 1 addition & 1 deletion docs/environment_files/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies:
- netcdf-fortran==4.5.4 # Python wrapper for netCDF-Fortran
- numpy==1.26.0 # Optimized mathematical functions
- pandas==2.1.1 # Tables/timeseries manipulation
- pip==23.2.1 # Install packages from PyPi
- pip==23.3 # Install packages from PyPi
- pylint==2.17.5 # Python linter
- pyproj==3.6.1 # Python map projections library
- python==3.9.18 # Any python version prior to 3.10
Expand Down

0 comments on commit 0560b12

Please sign in to comment.