-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds codec interface + registry and migrate existing code #154
Conversation
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
…rs is a pain Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #154 +/- ##
==========================================
- Coverage 86.61% 86.56% -0.05%
==========================================
Files 54 57 +3
Lines 3548 3499 -49
Branches 578 548 -30
==========================================
- Hits 3073 3029 -44
+ Misses 308 303 -5
Partials 167 167
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
This pull request includes various updates primarily focused on enhancing the configuration, updating Python version support, and refactoring the codebase for better modularity and maintainability. The most important changes include updating Python versions in the CI workflows, adding a new codec interface, and refactoring the CDF handling code.
It also drops support for AMDA CSV format.
Configuration Updates:
.editorconfig
: Addedmax_line_length = 120
to enforce a maximum line length.CI Workflow Updates:
.github/workflows/PRs.yml
: Updated the supported Python versions to include3.9
to3.13
and removed3.8
. [1] [2].github/workflows/tests.yml
: Updated the supported Python versions to include3.9
to3.13
and removed3.8
. [1] [2].github/workflows/pythonpublish.yml
: Updated the Python version from3.8
to3.9
.Code Refactoring:
speasy/core/cdf/__init__.py
: Removed the entire file which contained various helper functions and classes for handling CDF files.speasy/core/codecs/__init__.py
: Added imports forCodecInterface
,register_codec
,get_codec
, anduser_codecs_dir
and included bundled codecs.speasy/core/codecs/codec_interface.py
: Introduced a newCodecInterface
class to define the protocol for codecs.speasy/core/codecs/bundled_codecs/istp_cdf.py
: Added a new codec classIstpCdf
for handling ISTP CDF files, including methods for loading and saving variables.Minor Code Changes:
speasy/config/__init__.py
: Added a new configuration entryuser_codecs_extra_dirs
and updated the description foroutput_format
. [1] [2]speasy/core/any_files.py
: Changed how headers are accessed in_cached_get_remote_file
function.