Conversation
* ci: dropping python 3.9 in testing and for dependabot/copilot * ci: dropping support for python 3.9 in package and upgrading docker to use python 3.10 * docs: updating docs with python 3.10 as minimum * fix: mypy assignment error * ci: updating requirements files with python 3.10 as minimum
* Add Python 3.13 support to configuration files Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com> * Complete Python 3.13 support - all tests pass Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com> * Remove test artifact file Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com> * Fix ResourceWarning for unclosed database in Python 3.13 - Add cache.close() call in test_config.py to properly close diskcache Cache object - Add conftest.py with session-level fixture to clean up slicedimage Cache objects - Addresses ResourceWarnings that appear when running tests with Python 3.13 Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com> * Improve ResourceWarning handling for Python 3.13 - Add per-test cleanup fixture to close Cache objects after each test - Add pytest filterwarnings to ignore unclosed database ResourceWarnings - Keep session-level cleanup as safety net - Add warnings filter at module level for additional coverage Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com> * Add gc import and force garbage collection after cleanup - Add import gc at the top of the file - Call gc.collect() after _cleanup_diskcache_caches() in cleanup_diskcache_per_test - Ensures proper cleanup and prevents ResourceWarnings in Python 3.13 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: shachafl <66333410+shachafl@users.noreply.github.com>
This was
linked to
issues
Jan 9, 2026
berl
approved these changes
Jan 26, 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 pull request updates the supported Python versions for the project, ending support for Python 3.9 and adding support for Python 3.13 across documentation, CI/CD workflows, Docker images, and configuration files. It also introduces a new
conftest.pyto address Python 3.13's stricter resource management warnings, and includes minor corrections to example and tutorial files.Python Version Support Updates
>= 3.9, <3.13to>= 3.10, <3.14inpyproject.toml, documentation (README.rst,docs/source/installation/index.rst), and example files to reflect the new minimum and maximum versions. [1] [2] [3] [4] [5] [6] [7] [8].github/workflows/starfish-prod-ci.yml,.github/copilot-setup-steps.yml) to remove Python 3.9 and add Python 3.13 to the test matrix and setup steps. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18]python:3.9-slim-bustertopython:3.10-slim-busterindocker/Dockerfile..github/.python-versionand.github/copilot-instructions.mdto reflect the new minimum and maximum supported Python versions. [1] [2]Resource Management for Python 3.13
conftest.pywith pytest fixtures to clean up diskcache resources after each test and at session end, suppressingResourceWarningin Python 3.13.Documentation and Changelog
Minor Corrections
examples/tutorials/transforms_list.jsonto correct floating point precision.