Update uv.lock with pillow 12.3.0 and update .gitignore - #1208
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1208 +/- ##
=======================================
Coverage 72.73% 72.73%
=======================================
Files 22 22
Lines 5766 5766
=======================================
Hits 4194 4194
Misses 1572 1572
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
jdebacker
reviewed
Aug 18, 2026
jdebacker
requested changes
Aug 18, 2026
jdebacker
left a comment
Member
There was a problem hiding this comment.
Just one request to update the changelog.
jdebacker
approved these changes
Aug 18, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR:
.gitignoreto include a line.claude/.uv.lockfile to include upgradedpillowpackage version 12.3.0. This satisfies the dependabot PR update in PR Bump pillow from 12.2.0 to 12.3.0 #1176. I updated all the packages in the environment. This resulted in an update of thepytestpackage, which caused errors that led to the changes below.pyproject.toml,ogcore/__init__.pyandCHANGELOG.md.pytestinpyproject.tomltopytest>=9.1. Some changes to logging happened in versions 9.1+, that are not backward compatible. All our testing started throwing errors once I updated that package. I changed thepytestminiversion in line 94 ofpyproject.tomlto 9.1, and I updated thefilterwarningsin lines 94-98.Makefilecommands to fit with standard GNU formatting and to work with our updated usage of theuvpackage. I also got rid of some compute studio commands, the objects of which had no targets.logger.info()warnings inhousehold.pywhich was a source of errors from the updatedpytestpackage.make_params.pyandmake_vars.pyscripts and the Sphinx_toc.ymltable of contents script. And we were missingconfig.rst,SS.rst, andTPI.rstfiles. I explicitly put the API chapters in the_toc.ymlfile. And I built an updatedparameters.mdfile._ext/supress_header_warnings.pyfile and referenced it in_config.pyin order to surpress only those warnings associated with only theparameters.mdandvariables.mdfiles.cc: @jdebacker