-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the version comparison for importlib usage
This commit uses the python version 3.8 as last version to use `importlib_metadata`. The previous code tried to use `importlib_metadata` on python 3.9, which fails. The commit also adapts the `entry_points()` calls in `get_extractor_class` to python 3.9, where `entry_points` does not support keyword-arguments
- Loading branch information
1 parent
398445c
commit f394a72
Showing
5 changed files
with
18 additions
and
17 deletions.
There are no files selected for viewing
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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
datalad>=0.18 | ||
sphinx>=1.7.8 | ||
sphinx-rtd-theme | ||
datalad-metadata-model>=0.3.10 | ||
importlib-resources | ||
pytest | ||
pyyaml | ||
datalad-metadata-model>=0.3.10 | ||
sphinx>=1.7.8 | ||
sphinx-rtd-theme |