-
-
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 'main' into vlen-string-coding
- Loading branch information
Showing
108 changed files
with
5,714 additions
and
1,975 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,8 +82,6 @@ jobs: | |
name: Mypy | ||
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} | ||
|
@@ -190,6 +188,126 @@ jobs: | |
|
||
|
||
|
||
pyright: | ||
name: Pyright | ||
runs-on: "ubuntu-latest" | ||
needs: detect-ci-trigger | ||
if: | | ||
always() | ||
&& ( | ||
contains( github.event.pull_request.labels.*.name, 'run-pyright') | ||
) | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
CONDA_ENV_FILE: ci/requirements/environment.yml | ||
PYTHON_VERSION: "3.10" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch all history for all branches and tags. | ||
|
||
- name: set environment variables | ||
run: | | ||
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | ||
- name: Setup micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
environment-file: ${{env.CONDA_ENV_FILE}} | ||
environment-name: xarray-tests | ||
create-args: >- | ||
python=${{env.PYTHON_VERSION}} | ||
conda | ||
cache-environment: true | ||
cache-environment-key: "${{runner.os}}-${{runner.arch}}-py${{env.PYTHON_VERSION}}-${{env.TODAY}}-${{hashFiles(env.CONDA_ENV_FILE)}}" | ||
- name: Install xarray | ||
run: | | ||
python -m pip install --no-deps -e . | ||
- name: Version info | ||
run: | | ||
conda info -a | ||
conda list | ||
python xarray/util/print_versions.py | ||
- name: Install pyright | ||
run: | | ||
python -m pip install pyright --force-reinstall | ||
- name: Run pyright | ||
run: | | ||
python -m pyright xarray/ | ||
- name: Upload pyright coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: pyright_report/cobertura.xml | ||
flags: pyright | ||
env_vars: PYTHON_VERSION | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
||
pyright39: | ||
name: Pyright 3.9 | ||
runs-on: "ubuntu-latest" | ||
needs: detect-ci-trigger | ||
if: | | ||
always() | ||
&& ( | ||
contains( github.event.pull_request.labels.*.name, 'run-pyright') | ||
) | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
CONDA_ENV_FILE: ci/requirements/environment.yml | ||
PYTHON_VERSION: "3.9" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch all history for all branches and tags. | ||
|
||
- name: set environment variables | ||
run: | | ||
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | ||
- name: Setup micromamba | ||
uses: mamba-org/setup-micromamba@v1 | ||
with: | ||
environment-file: ${{env.CONDA_ENV_FILE}} | ||
environment-name: xarray-tests | ||
create-args: >- | ||
python=${{env.PYTHON_VERSION}} | ||
conda | ||
cache-environment: true | ||
cache-environment-key: "${{runner.os}}-${{runner.arch}}-py${{env.PYTHON_VERSION}}-${{env.TODAY}}-${{hashFiles(env.CONDA_ENV_FILE)}}" | ||
- name: Install xarray | ||
run: | | ||
python -m pip install --no-deps -e . | ||
- name: Version info | ||
run: | | ||
conda info -a | ||
conda list | ||
python xarray/util/print_versions.py | ||
- name: Install pyright | ||
run: | | ||
python -m pip install pyright --force-reinstall | ||
- name: Run pyright | ||
run: | | ||
python -m pyright xarray/ | ||
- name: Upload pyright coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: pyright_report/cobertura.xml | ||
flags: pyright39 | ||
env_vars: PYTHON_VERSION | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
||
|
||
|
||
min-version-policy: | ||
name: Minimum Version Policy | ||
runs-on: "ubuntu-latest" | ||
|
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import numpy as np | ||
|
||
from xarray import Dataset | ||
|
||
from . import requires_dask | ||
|
||
|
||
class DatasetBinaryOp: | ||
def setup(self): | ||
self.ds = Dataset( | ||
{ | ||
"a": (("x", "y"), np.ones((300, 400))), | ||
"b": (("x", "y"), np.ones((300, 400))), | ||
} | ||
) | ||
self.mean = self.ds.mean() | ||
self.std = self.ds.std() | ||
|
||
def time_normalize(self): | ||
(self.ds - self.mean) / self.std | ||
|
||
|
||
class DatasetChunk: | ||
def setup(self): | ||
requires_dask() | ||
self.ds = Dataset() | ||
array = np.ones(1000) | ||
for i in range(250): | ||
self.ds[f"var{i}"] = ("x", array) | ||
|
||
def time_chunk(self): | ||
self.ds.chunk(x=(1,) * 1000) |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.