Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 98aeac9

Browse files
Backport PR #58209: CI: Pin blosc to fix pytables (#58211)
1 parent 5466f15 commit 98aeac9

10 files changed

+21
-2
lines changed

‎ci/deps/actions-310.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27+
# https://github.com/conda-forge/pytables-feedstock/issues/97
28+
- c-blosc2=2.13.2
2729
- blosc>=1.21.3
2830
- bottleneck>=1.3.6
2931
- fastparquet>=2022120

‎ci/deps/actions-311-downstream_compat.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ dependencies:
2626

2727
# optional dependencies
2828
- beautifulsoup4>=4.11.2
29+
# https://github.com/conda-forge/pytables-feedstock/issues/97
30+
- c-blosc2=2.13.2
2931
- blosc>=1.21.3
3032
- bottleneck>=1.3.6
3133
- fastparquet>=2022120

‎ci/deps/actions-311.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27+
# https://github.com/conda-forge/pytables-feedstock/issues/97
28+
- c-blosc2=2.13.2
2729
- blosc>=1.21.3
2830
- bottleneck>=1.3.6
2931
- fastparquet>=2022120

‎ci/deps/actions-312.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27+
# https://github.com/conda-forge/pytables-feedstock/issues/97
28+
- c-blosc2=2.13.2
2729
- blosc>=1.21.3
2830
- bottleneck>=1.3.6
2931
- fastparquet>=2022120

‎ci/deps/actions-39-minimum_versions.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ dependencies:
2727

2828
# optional dependencies
2929
- beautifulsoup4=4.11.2
30+
# https://github.com/conda-forge/pytables-feedstock/issues/97
31+
- c-blosc2=2.13.2
3032
- blosc=1.21.3
3133
- bottleneck=1.3.6
3234
- fastparquet=2022120

‎ci/deps/actions-39.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ dependencies:
2424

2525
# optional dependencies
2626
- beautifulsoup4>=4.11.2
27+
# https://github.com/conda-forge/pytables-feedstock/issues/97
28+
- c-blosc2=2.13.2
2729
- blosc>=1.21.3
2830
- bottleneck>=1.3.6
2931
- fastparquet>=2022120

‎ci/deps/circle-310-arm64.yaml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ dependencies:
2525

2626
# optional dependencies
2727
- beautifulsoup4>=4.11.2
28+
# https://github.com/conda-forge/pytables-feedstock/issues/97
29+
- c-blosc2=2.13.2
2830
- blosc>=1.21.3
2931
- bottleneck>=1.3.6
3032
- fastparquet>=2022120

‎environment.yml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ dependencies:
2727

2828
# optional dependencies
2929
- beautifulsoup4>=4.11.2
30+
# https://github.com/conda-forge/pytables-feedstock/issues/97
31+
- c-blosc2=2.13.2
3032
- blosc
3133
- bottleneck>=1.3.6
3234
- fastparquet>=2022120

‎scripts/generate_pip_deps_from_conda.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import tomli as tomllib
2424
import yaml
2525

26-
EXCLUDE = {"python", "c-compiler", "cxx-compiler"}
26+
EXCLUDE = {"python", "c-compiler", "cxx-compiler", "c-blosc2"}
2727
REMAP_VERSION = {"tzdata": "2022.7"}
2828
CONDA_TO_PIP = {
2929
"pytables": "tables",

‎scripts/validate_min_versions_in_sync.py‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
SETUP_PATH = pathlib.Path("pyproject.toml").resolve()
3737
YAML_PATH = pathlib.Path("ci/deps")
3838
ENV_PATH = pathlib.Path("environment.yml")
39-
EXCLUDE_DEPS = {"tzdata", "blosc", "pandas-gbq", "pyqt", "pyqt5"}
39+
EXCLUDE_DEPS = {"tzdata", "blosc", "c-blosc2", "pandas-gbq", "pyqt", "pyqt5"}
4040
EXCLUSION_LIST = frozenset(["python=3.8[build=*_pypy]"])
4141
# pandas package is not available
4242
# in pre-commit environment
@@ -225,6 +225,9 @@ def get_versions_from_ci(content: list[str]) -> tuple[dict[str, str], dict[str,
225225
seen_required = True
226226
elif "# optional dependencies" in line:
227227
seen_optional = True
228+
elif "#" in line:
229+
# just a comment
230+
continue
228231
elif "- pip:" in line:
229232
continue
230233
elif seen_required and line.strip():

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /