-
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
Documentation improvements, Numpy support improvement and batch renaming #189
Open
jeandet
wants to merge
13
commits into
SciQLop:main
Choose a base branch
from
jeandet:remove_direct_ws_usage_from_doc
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
f278093
to
b33fd7b
Compare
|
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>
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>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
5edd4f5
to
491826f
Compare
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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 includes various changes to improve the codebase, update documentation, and enhance compatibility with external libraries. The most important changes include updating the wheel build process in the
Makefile
, renaming and restructuring documentation files, and enhancing compatibility with NumPy and SciPy.Build Process Improvements:
Makefile
: Updated the build process to usepython -m build --sdist --wheel
instead ofpython setup.py
commands for building source and wheel packages. This modernizes the build process.Documentation Updates:
docs/user/webservices.rst
renamed todocs/user/data_providers.rst
: Updated references to data providers throughout the documentation to reflect the new file name and structure. [1] [2]docs/index.rst
: Enhanced the introduction and features section, added new sections for NumPy and SciPy compatibility, and included images and examples for better clarity. [1] [2] [3] [4]Compatibility Enhancements:
docs/user/numpy.rst
: Added a new section detailing the compatibility of Speasy with NumPy, including examples of arithmetic operations, NumPy functions, and indexing methods.docs/user/scipy.rst
: Added a new section explaining how Speasy integrates with SciPy for interpolation, filtering, and resampling, along with detailed examples.Codebase Improvements:
speasy/core/data_containers.py
: Improved handling of datetime objects by ensuring they are converted to UTC before processing, and added acopy
method toDataContainer
for deep copying. [1] [2] [3]speasy/core/http.py
: Refactored URL rewrite rules application by using theApplyRewriteRules
decorator to streamline the code and reduce redundancy. [1] [2] [3]These changes collectively aim to improve the usability, maintainability, and functionality of the codebase and its documentation.