-
Notifications
You must be signed in to change notification settings - Fork 26
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
Optimize dependency management and installation #216
Merged
Merged
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
This was referenced Dec 19, 2023
Closed
This was
linked to
issues
Dec 19, 2023
Closed
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #216 +/- ##
==========================================
+ Coverage 75.58% 76.71% +1.12%
==========================================
Files 24 23 -1
Lines 11154 11155 +1
==========================================
+ Hits 8431 8557 +126
+ Misses 2723 2598 -125 ☔ View full report in Codecov by Sentry. |
6061329
to
277cc67
Compare
- single-source version number to pyproject.toml - implement optional dependency groups
277cc67
to
f5ca61f
Compare
- required to avoid blocking the terminal on windows
This was
unlinked from
issues
Jan 2, 2024
Closed
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.
Response to PyOpenSci Review comments (pyOpenSci/software-submission#138)
TODOs
(required for datashader)
pip
installDependency management for
EOmaps
has been improved to split between required and optional dependencies.The following optional dependency groups can be used to activate additional features and functionalities:
pip install eomaps[all]
EOmaps < v8.0
)pip install eomaps[all_nogui]
PyQt5
(andqtpy
)pip install eomaps[wms]
pip install eomaps[io]
pandas
,xarray
,geopandas
andrioxarray
pip install eomaps[classify]
mapclassify
)pip install eomaps[shade]
datashader
)pip install eomaps[gui]
Qt
GUI framework (required for the CompanionWidget and matplotlib'sQtAgg
backend)🌦️ Changes
pyproject.toml
file (instead ofsetup.py
)>=3.8
_version.py
has been removed. The version is now specified in the[project]
category of thepyproject.toml
file.micromamba
to setup (and cache) test environments🔨 Fixes