Skip to content

chore(deps-dev): update hatchling requirement from <2,>=1 to >=1.31.0,<2 in the development-dependencies group #2

chore(deps-dev): update hatchling requirement from <2,>=1 to >=1.31.0,<2 in the development-dependencies group

chore(deps-dev): update hatchling requirement from <2,>=1 to >=1.31.0,<2 in the development-dependencies group #2

Workflow file for this run

### A CI workflow template that runs linting and python testing
### TODO: Modify as needed or as desired.
name: Test tap-s3
on:
push:
branches: [main]
paths:
- .github/workflows/test.yml
- tap_s3/**
- tests/**
- pyproject.toml
- uv.lock
pull_request:
paths:
- .github/workflows/test.yml
- tap_s3/**
- tests/**
- pyproject.toml
- uv.lock
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
permissions:
contents: read # read repository contents
jobs:
build-package:
name: Build & verify package
runs-on: ubuntu-latest
outputs:
supported-python-versions: ${{ steps.baipp.outputs.supported_python_classifiers_json_array }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- uses: hynek/build-and-inspect-python-package@2abe76da66d0a6a4a227101f9348ee855797cfa5 # v3.0.1
id: baipp
pytest:
name: Test
needs: [build-package]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ${{ fromJson(needs.build-package.outputs.supported-python-versions) }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Run Tox
run: | # zizmor: ignore[template-injection]
uvx --with=tox-uv tox -e ${{ matrix.python-version }}
typing:
name: Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- name: Run Tox
run: >
uvx
--managed-python
--with=tox-uv
tox -e typing