Skip to content

Commit

Permalink
download tzdata in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Feb 9, 2023
1 parent b5ef6ae commit d4b1791
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions ci/deps/actions-310-numpydev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies:
# pandas dependencies
- python-dateutil
- pytz
- tzdata
- pip
- pip:
- "cython"
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-310.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-311.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies:
- python-dateutil
- numpy<1.24.0
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-38-downstream_compat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-38-minimum_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies:
- python-dateutil=2.8.2
- numpy=1.20.3
- pytz=2020.1
- tzdata

# optional dependencies
- beautifulsoup4=4.9.3
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-39.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/actions-pypy-38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ dependencies:
- numpy
- python-dateutil
- pytz
- tzdata
1 change: 1 addition & 0 deletions ci/deps/circle-38-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies:
- python-dateutil
- numpy
- pytz
- tzdata

# optional dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ coverage
python-dateutil
numpy
pytz
tzdata
beautifulsoup4
blosc
brotlipy
Expand Down
5 changes: 3 additions & 2 deletions scripts/validate_min_versions_in_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ def get_versions_from_ci(content: list[str]) -> tuple[dict[str, str], dict[str,
elif seen_required and line.strip():
if "==" in line:
package, version = line.strip().split("==")

else:
elif "=" in line:
package, version = line.strip().split("=")
else:
continue
package = package[2:]
if package in EXCLUDE_DEPS:
continue
Expand Down

0 comments on commit d4b1791

Please sign in to comment.