Backport zoneinfo logic into dateutil.tz.tzfile #339
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ | |
"2.7", | |
"3.5", | |
"3.6", | |
"3.7", | |
"3.8", | |
"3.9", | |
"3.10", | |
"3.11", | |
"3.12", | |
"3.13", | |
"pypy-2.7", | |
"pypy-3.8", | |
] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
tzdata-version: ["2024a"] | |
exclude: | |
- python-version: "2.7" | |
os: "ubuntu-latest" | |
- python-version: "2.7" | |
os: "windows-latest" | |
- python-version: "2.7" | |
os: "macos-latest" | |
- python-version: "3.5" | |
os: "ubuntu-latest" | |
- python-version: "3.6" | |
os: "ubuntu-latest" | |
include: | |
- python-version: "2.7" | |
os: "ubuntu-20.04" | |
- python-version: "3.5" | |
os: "ubuntu-20.04" | |
- python-version: "3.6" | |
os: "ubuntu-20.04" | |
runs-on: ${{ matrix.os }} | |
env: | |
TOXENV: py | |
steps: | |
- uses: actions/checkout@v3 | |
- if: ${{ matrix.python-version == '2.7' }} | |
run: | | |
sudo apt-get install python-is-python2 | |
curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py | |
python get-pip.py | |
name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
- if: ${{ matrix.python-version != '2.7' }} | |
name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install specific tzdata version | |
run: | | |
sudo apt-get install lzip | |
TMP_DIR=$(mktemp -d) | |
cd $TMP_DIR | |
curl -sSL "https://data.iana.org/time-zones/releases/${{matrix.tzdata-version}}.tar.gz" -o tzdata.tar.gz | |
mkdir tzdata | |
tar --lzip -xf tzdata.tar.lz | |
cd tzdata-${{matrix.tzdata-version}} | |
TOPDIR=/usr/share/zoneinfo sudo make install | |
cat /usr/share/zoneinfo/tzdata.zi | head -n 1 | |
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos') | |
- name: Install dependencies | |
run: python -m pip install -U tox | |
- name: Run tox | |
run: python -m tox | |
- name: Generate coverage.xml | |
run: python -m tox -e coverage | |
- name: Report coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./.tox/coverage.xml | |
name: ${{ matrix.os }}:${{ matrix.python-version }} | |
fail_ci_if_error: true | |
other: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
toxenv: ["docs", "tz", "precommit"] | |
env: | |
TOXENV: ${{ matrix.toxenv }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: ${{ matrix.toxenv }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -U tox | |
- name: Run action | |
run: tox | |
darker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
- uses: akaihola/darker@0fb2501a3f6c1b2d64976afa57885aeec0601182 | |
# pinned due to unreleased fix: https://github.com/akaihola/darker/issues/489 | |
with: | |
options: "--check --diff --color --isort" | |
src: "." | |
version: "1.7.2" | |
build-dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install tox | |
run: python -m pip install -U tox | |
- name: Run tox | |
run: python -m tox -e build | |
- name: Check generation | |
run: | | |
exactly_one() { | |
value=$(find dist -iname $1 | wc -l) | |
if [ $value -ne 1 ]; then | |
echo "Found $value instances of $1, not 1" | |
return 1 | |
else | |
echo "Found exactly 1 instance of $value" | |
fi | |
} | |
# Check that exactly one tarball and one wheel are created | |
exactly_one '*.tar.gz' | |
exactly_one '*.whl' |