-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Dropped support for Python 3.8
- Loading branch information
1 parent
8e85c98
commit 7b5f561
Showing
5 changed files
with
476 additions
and
441 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,39 +21,25 @@ jobs: | |
- "3.11" | ||
- "3.10" | ||
- "3.9" | ||
- "3.8" | ||
max-parallel: 3 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
allow-prereleases: true | ||
|
||
- name: Upgrade pip | ||
run: | | ||
pip install pip | ||
pip --version | ||
- name: Install Poetry | ||
run: | | ||
pipx install poetry | ||
poetry --version | ||
- name: Install dependencies | ||
run: | | ||
poetry env use ${{ matrix.python-version }} | ||
poetry install | ||
- uses: astral-sh/setup-uv@v3 | ||
with: | ||
version: ">=0.4.0" | ||
|
||
- name: Test with pytest | ||
env: | ||
TAP_CIRCLE_CI_TOKEN: ${{ secrets.TAP_CIRCLE_CI_TOKEN }} | ||
TAP_CIRCLE_CI_ORG_SLUG: ${{ secrets.TAP_CIRCLE_CI_ORG_SLUG }} | ||
run: | | ||
poetry run pytest | ||
uvx --python ${{ matrix.python-version }} --with tox-uv tox -e ${{ matrix.python-version }} | ||
- name: Type check with mypy | ||
run: | | ||
poetry run mypy tap_circle_ci | ||
uvx --python ${{ matrix.python-version }} --with tox-uv tox -e typing |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
pip==24.3.1 | ||
poetry==1.8.4 |
Oops, something went wrong.