Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install build tool
run: |
python -m pip install --upgrade pip
python -m pip install hatch
python -m pip install hatch "click!=8.3.0" # https://github.com/pypa/hatch/issues/2050
- name: Build
run: |
hatch build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install tools
run: |
python -m pip install --upgrade pip
python -m pip install hatch
python -m pip install hatch "click!=8.3.0" # https://github.com/pypa/hatch/issues/2050
hatch env create lint
- name: Lint with flake8
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install hatch
python -m pip install hatch "click!=8.3.0" # https://github.com/pypa/hatch/issues/2050
hatch env create default
hatch env create test.py${{matrix.python-version}}
- name: Run pytest
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Install tools
run: |
python -m pip install --upgrade pip
python -m pip install hatch
python -m pip install hatch "click!=8.3.0" # https://github.com/pypa/hatch/issues/2050
hatch env create lint
- name: Type check w/ mypy
run: hatch run lint:mypy --install-types --non-interactive --pretty