Merge the upstream changes (v1.0.8 -> v1.1.0)#193
Merged
joemasiero merged 1 commit intoCaltech-IPAC:mainfrom Jul 29, 2025
Merged
Merge the upstream changes (v1.0.8 -> v1.1.0)#193joemasiero merged 1 commit intoCaltech-IPAC:mainfrom
joemasiero merged 1 commit intoCaltech-IPAC:mainfrom
Conversation
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 introduces a new version (
v1.1.0) of the Kete project, reflecting significant updates to its functionality, dependencies, and project structure. Key changes include transitioning the project to a personal fork, enhancing SPICE kernel handling, updating dependencies, simplifying cache management, and adding new Rust functions to the core module.Project Transition and Metadata Updates:
CHANGELOG.md: Added announcement about the project transition to a personal fork by Dar Dahlen, along with details about future development.Cargo.tomlandpyproject.toml: Updated version to1.1.0and changed repository URLs to reflect the new fork location. [1] [2]SPICE Kernel Handling Enhancements:
src/kete/horizons.py: Added acache_dirparameter tofetch_spice_kernelto organize SPICE kernel caching more effectively. [1] [2] [3]CHANGELOG.md: Documented the removal of SPICE kernels from the repository and their automatic download on first use.Dependency Updates:
Cargo.toml: Updatedpyo3dependency from^0.23.4to^0.24.1.pyproject.toml: Adjusted dependency formatting and maintained compatibility with Python 3.9+. [1] [2]Cache Management Simplification:
src/kete/cache.py: Removed redundant cache-related functions (cache_path,cache_ls,get_cache_size) and integratedcache_pathfrom the Rust core module.Rust Core Module Enhancements:
src/kete/rust/lib.rs: Added new Rust functions for SPICE kernel and cache management (spk_load_cache_py,spk_load_core_py,pck_loaded_objects_py, andcache_path). [1] [2]