Skip to content

Commit d4b1791

Browse files
author
MarcoGorelli
committed
download tzdata in CI
1 parent b5ef6ae commit d4b1791

12 files changed

+14
-2
lines changed

ci/deps/actions-310-numpydev.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ dependencies:
1717
# pandas dependencies
1818
- python-dateutil
1919
- pytz
20+
- tzdata
2021
- pip
2122
- pip:
2223
- "cython"

ci/deps/actions-310.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies:
2020
- python-dateutil
2121
- numpy
2222
- pytz
23+
- tzdata
2324

2425
# optional dependencies
2526
- beautifulsoup4

ci/deps/actions-311.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies:
2020
- python-dateutil
2121
- numpy<1.24.0
2222
- pytz
23+
- tzdata
2324

2425
# optional dependencies
2526
- beautifulsoup4

ci/deps/actions-38-downstream_compat.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies:
2121
- python-dateutil
2222
- numpy
2323
- pytz
24+
- tzdata
2425

2526
# optional dependencies
2627
- beautifulsoup4

ci/deps/actions-38-minimum_versions.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- python-dateutil=2.8.2
2323
- numpy=1.20.3
2424
- pytz=2020.1
25+
- tzdata
2526

2627
# optional dependencies
2728
- beautifulsoup4=4.9.3

ci/deps/actions-38.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies:
2020
- python-dateutil
2121
- numpy
2222
- pytz
23+
- tzdata
2324

2425
# optional dependencies
2526
- beautifulsoup4

ci/deps/actions-39.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies:
2020
- python-dateutil
2121
- numpy
2222
- pytz
23+
- tzdata
2324

2425
# optional dependencies
2526
- beautifulsoup4

ci/deps/actions-pypy-38.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ dependencies:
2222
- numpy
2323
- python-dateutil
2424
- pytz
25+
- tzdata

ci/deps/circle-38-arm64.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies:
2020
- python-dateutil
2121
- numpy
2222
- pytz
23+
- tzdata
2324

2425
# optional dependencies
2526
- beautifulsoup4

environment.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- python-dateutil
2323
- numpy
2424
- pytz
25+
- tzdata
2526

2627
# optional dependencies
2728
- beautifulsoup4

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ coverage
1313
python-dateutil
1414
numpy
1515
pytz
16+
tzdata
1617
beautifulsoup4
1718
blosc
1819
brotlipy

scripts/validate_min_versions_in_sync.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,10 @@ def get_versions_from_ci(content: list[str]) -> tuple[dict[str, str], dict[str,
7575
elif seen_required and line.strip():
7676
if "==" in line:
7777
package, version = line.strip().split("==")
78-
79-
else:
78+
elif "=" in line:
8079
package, version = line.strip().split("=")
80+
else:
81+
continue
8182
package = package[2:]
8283
if package in EXCLUDE_DEPS:
8384
continue

0 commit comments

Comments
 (0)