-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Closes #517 Added new requirements file `requirements_full.txt` with all optional requirements. Getting rust, cargo and poetry properly installed in the docker images for building the wheels is followed up in issue #601. Follow up with issue #602 - Avoid skipping tests when build Python wheels. **Remaining things to be done:** - [x] Fix failing tests - [x] Make it possible to install dlite with `pip install DLite-Python[full]` to include all optional dependencies. - [x] Document how to install DLite with all dependencies included. - [x] Ensure that tests run if yaml is missing (avoid false CI failures on this PR before we get everything correctly installed in the docker containers used for building the wheels. This should not be used to skip yaml-dependent tests when testing the wheels). - [ ] Agree on whether to accept this PR or the solution suggested in issue #603. ## Type of change - [x] Bug fix & code cleanup - [ ] New feature - [ ] Documentation update - [ ] Test update ## Checklist for the reviewer This checklist should be used as a help for the reviewer. - [ ] Is the change limited to one issue? - [ ] Does this PR close the issue? - [ ] Is the code easy to read and understand? - [ ] Do all new feature have an accompanying new test? - [ ] Has the documentation been updated as necessary?
- Loading branch information
Showing
15 changed files
with
122 additions
and
60 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
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
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,14 +1 @@ | ||
fortran-language-server>=1.12.0,<1.13 | ||
numpy>=1.20.3,<1.25.0 | ||
PyYAML>=5.4.1,<7 | ||
# psycopg2-binary can lead to segfault - so far all seems good with v2.9.5 | ||
psycopg2-binary==2.9.5 | ||
pandas>=1.2,<2.1 | ||
rdflib>=4.2.1,<7 | ||
pint>=0.15,<0.23 | ||
openpyxl>=3.0.9,<3.2 | ||
pymongo>=4.4.0,<5 | ||
tripper>=0.2.5,<0.3 | ||
pydantic>=1.10.0,<2 | ||
typing_extensions>=4.1,<5 | ||
requests>=2.10,<3 | ||
numpy>=1.14.5,<1.25.0 |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Optional requirements - used by various plugins or additional features like mappings | ||
fortran-language-server>=1.12.0,<1.13 | ||
PyYAML>=5.4.1,<7 | ||
# psycopg2-binary can lead to segfault - so far all seems good with v2.9.5 | ||
psycopg2-binary==2.9.5 | ||
pandas>=1.2,<2.1 | ||
rdflib>=4.2.1,<7 | ||
pint>=0.15,<1 | ||
pymongo>=4.4.0,<5 | ||
tripper>=0.2.5,<0.3 | ||
requests>=2.10,<3 | ||
jinja2>=3.0,<4 | ||
pydantic>=1.10.0,<3 | ||
typing_extensions>=4.1,<5 |