-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'pydata:main' into fix-6220-use-fast-path-when-grouping-…
…unique-monotonic-variable
- Loading branch information
Showing
86 changed files
with
1,807 additions
and
789 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | ||
- name: Setup micromamba | ||
uses: mamba-org/provision-with-micromamba@v14 | ||
uses: mamba-org/provision-with-micromamba@v15 | ||
with: | ||
environment-file: ${{env.CONDA_ENV_FILE}} | ||
environment-name: xarray-tests | ||
|
@@ -100,7 +100,7 @@ jobs: | |
run: | | ||
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | ||
- name: Setup micromamba | ||
uses: mamba-org/provision-with-micromamba@v14 | ||
uses: mamba-org/provision-with-micromamba@v15 | ||
with: | ||
environment-file: ${{env.CONDA_ENV_FILE}} | ||
environment-name: xarray-tests | ||
|
@@ -134,18 +134,16 @@ jobs: | |
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
||
mypy38: | ||
name: Mypy 3.8 | ||
mypy39: | ||
name: Mypy 3.9 | ||
runs-on: "ubuntu-latest" | ||
needs: detect-ci-trigger | ||
# temporarily skipping due to https://github.com/pydata/xarray/issues/6551 | ||
if: needs.detect-ci-trigger.outputs.triggered == 'false' | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
CONDA_ENV_FILE: ci/requirements/environment.yml | ||
PYTHON_VERSION: "3.8" | ||
PYTHON_VERSION: "3.9" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -156,7 +154,7 @@ jobs: | |
run: | | ||
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | ||
- name: Setup micromamba | ||
uses: mamba-org/provision-with-micromamba@v14 | ||
uses: mamba-org/provision-with-micromamba@v15 | ||
with: | ||
environment-file: ${{env.CONDA_ENV_FILE}} | ||
environment-name: xarray-tests | ||
|
@@ -185,7 +183,7 @@ jobs: | |
uses: codecov/[email protected] | ||
with: | ||
file: mypy_report/cobertura.xml | ||
flags: mypy38 | ||
flags: mypy39 | ||
env_vars: PYTHON_VERSION | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
@@ -212,7 +210,7 @@ jobs: | |
fetch-depth: 0 # Fetch all history for all branches and tags. | ||
|
||
- name: Setup micromamba | ||
uses: mamba-org/provision-with-micromamba@v14 | ||
uses: mamba-org/provision-with-micromamba@v15 | ||
with: | ||
environment-name: xarray-tests | ||
environment-file: false | ||
|
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 |
---|---|---|
|
@@ -92,7 +92,15 @@ upstream https://github.com/pydata/xarray (push) | |
``` | ||
You're done pushing to main! | ||
|
||
13. Issue the release announcement to mailing lists & Twitter. For bug fix releases, I | ||
13. Update the version available on pyodide: | ||
- Open the PyPI page for [Xarray downloads](https://pypi.org/project/xarray/#files) | ||
- Clone the [pyodide repository](https://github.com/pyodide/pyodide). | ||
- Edit `packages/xarray/meta.yaml` to update the | ||
- link to the wheel (under "Built Distribution" on the PyPI page) | ||
- SHA256 hash (Click "Show Hashes" next to the link to the wheel) | ||
- Open a pull request to pyodide | ||
|
||
14. Issue the release announcement to mailing lists & Twitter. For bug fix releases, I | ||
usually only email [email protected]. For major/feature releases, I will email a broader | ||
list (no more than once every 3-6 months): | ||
- [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
Oops, something went wrong.