Skip to content

Commit bc4d689

Browse files
Updating new CI deps, reverting validate min versions script changes
1 parent c13ce5b commit bc4d689

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

ci/deps/actions-313.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ dependencies:
2727
- blosc>=1.21.3
2828
- bottleneck>=1.3.6
2929
- fastparquet>=2024.2.0
30-
- fsspec>=2024.2.0
30+
- fsspec>=2023.12.2
3131
- html5lib>=1.1
3232
- hypothesis>=6.84.0
33-
- gcsfs>=2024.2.0
33+
- gcsfs>=2023.12.2
3434
- jinja2>=3.1.3
3535
- lxml>=4.9.2
3636
- matplotlib>=3.8.3
@@ -48,7 +48,7 @@ dependencies:
4848
- python-calamine>=0.1.7
4949
- pytz>=2023.4
5050
- pyxlsb>=1.0.10
51-
- s3fs>=2024.2.0
51+
- s3fs>=2023.12.2
5252
- scipy>=1.12.0
5353
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0

scripts/validate_min_versions_in_sync.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"""
1515
from __future__ import annotations
1616

17-
import difflib
1817
import pathlib
1918
import sys
2019

@@ -74,12 +73,6 @@ def pin_min_versions_to_ci_deps() -> int:
7473
yaml_map, toml_map, yaml_start_data
7574
)
7675
if yaml_result_data != yaml_start_data:
77-
sys.stderr.write("\n".join(list(difflib.unified_diff(
78-
yaml_start_data,
79-
yaml_result_data,
80-
fromfile=curr_file.name,
81-
tofile="edited"))))
82-
sys.stderr.write(yaml_result_data)
8376
with open(curr_file, "w", encoding="utf-8") as f:
8477
f.write(yaml_result_data)
8578
ret |= 1

0 commit comments

Comments
 (0)