Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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
- Bumped `pypdf` to version 6.7.1 in `setup.py` and environment files

## [1.7.1] - 2026-02-03
### Changed
- Bumped `pip` to version 26.0 in `setup.py` and environment files
Expand Down
2 changes: 1 addition & 1 deletion docs/environment_files/gcpy_environment_py312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies:
- pylint ==3.2.2 # Python linter
- pyproj ==3.6.1 # Python map projections library
- python ==3.12.0 # Python language
- pypdf ==6.6.2 # PDF utilities (bookmarks, etc.)
- pypdf ==6.7.1 # PDF utilities (bookmarks, etc.)
- requests ==2.32.4 # HTTP library
- scipy ==1.13.1 # Scientific python package
- sparselt ==0.1.3 # Regridding earth system model data
Expand Down
2 changes: 1 addition & 1 deletion docs/environment_files/gcpy_environment_py313.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies:
- pylint ==3.3.4 # Python linter
- pyproj ==3.7.1 # Python map projections library
- python ==3.13 # Python language
- pypdf ==6.6.2 # PDF utilities (bookmarks, etc.)
- pypdf ==6.7.1 # PDF utilities (bookmarks, etc.)
- requests ==2.32.4 # HTTP library
- scipy ==1.15.2 # Scientific python package
- sparselt ==0.1.3 # Regridding earth system model data
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def _write_version_file():
"pylint==3.3.4",
"pyproj==3.7.1",
"python==3.13",
"pypdf==6.6.2",
"pypdf==6.7.1",
"requests==2.32.4",
"scipy==1.15.2",
"sparselt==0.1.3",
Expand Down