|
36 | 36 | SETUP_PATH = pathlib.Path("pyproject.toml").resolve()
|
37 | 37 | YAML_PATH = pathlib.Path("ci/deps")
|
38 | 38 | 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"} |
40 | 40 | EXCLUSION_LIST = frozenset(["python=3.8[build=*_pypy]"])
|
41 | 41 | # pandas package is not available
|
42 | 42 | # in pre-commit environment
|
@@ -225,6 +225,9 @@ def get_versions_from_ci(content: list[str]) -> tuple[dict[str, str], dict[str,
|
225 | 225 | seen_required = True
|
226 | 226 | elif "# optional dependencies" in line:
|
227 | 227 | seen_optional = True
|
| 228 | + elif "#" in line: |
| 229 | + # just a comment |
| 230 | + continue |
228 | 231 | elif "- pip:" in line:
|
229 | 232 | continue
|
230 | 233 | elif seen_required and line.strip():
|
|
0 commit comments