-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### What kind of change does this PR introduce? * Adds `yamale` to the core dependencies ### Does this PR introduce a breaking change? Yes, dependencies have changed. ### Other information: `yamale` code can be found in the core of the library. It might be a good idea to perform an analysis of all existing deps to ensure that the necessary entries are all listed.
- Loading branch information
Showing
4 changed files
with
8 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ jobs: | |
with: | ||
egress-policy: block | ||
allowed-endpoints: > | ||
api.github.com:443 | ||
azure.archive.ubuntu.com:80 | ||
coveralls.io:443 | ||
esm.ubuntu.com:443 | ||
|
@@ -188,12 +189,15 @@ jobs: | |
egress-policy: block | ||
allowed-endpoints: > | ||
api.github.com:443 | ||
conda.anaconda.org:443 | ||
coveralls.io:443 | ||
dap.service.does.not.exist:443 | ||
files.pythonhosted.org:443 | ||
github.com:443 | ||
objects.githubusercontent.com:443 | ||
pypi.org:443 | ||
raw.githubusercontent.com:443 | ||
repo.anaconda.com:443 | ||
- uses: actions/[email protected] | ||
- name: Setup Conda (Micromamba) with Python${{ matrix.python-version }} | ||
uses: mamba-org/[email protected] | ||
|
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ dependencies: | |
- scipy >=1.2 | ||
- statsmodels | ||
- xarray >=2022.06.0,<2023.11.0 | ||
- yamale | ||
# Extras | ||
- eofs | ||
- flox | ||
|
@@ -70,7 +71,6 @@ dependencies: | |
- tox | ||
# - tox-conda # Will be added when a [email protected]+ compatible plugin is released. | ||
- xdoctest | ||
- yamale | ||
- yamllint | ||
- pip | ||
- pip: | ||
|
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 |
---|---|---|
|
@@ -51,7 +51,8 @@ dependencies = [ | |
"scikit-learn>=0.21.3", | ||
"scipy>=1.2", | ||
"statsmodels", | ||
"xarray>=2022.06.0,<2023.11.0" | ||
"xarray>=2022.06.0,<2023.11.0", | ||
"yamale" | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -84,7 +85,6 @@ dev = [ | |
"tox", | ||
# "tox-conda", # Will be added when a [email protected]+ compatible plugin is released. | ||
"xdoctest", | ||
"yamale", | ||
"yamllint", | ||
# Documentation and examples | ||
"distributed >=2.0", | ||
|