Skip to content
Open
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
3 changes: 0 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,6 @@ old!_*
# bin files
bin/

# uv
uv.lock

# other
.buildinfo
bill_com_credentials.*
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group docs
--all-extras
Expand Down
38 changes: 30 additions & 8 deletions .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,28 @@ env:
*.githubusercontent.com:443

jobs:
lockfile:
runs-on: ubuntu-latest

steps:
- uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: ${{ env.ENDPOINT_WHITELIST}}

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd

- uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57
with:
python-version: 3.13
activate-environment: true
cache-dependency-glob: ${{ env.CACHE_GLOBS }}

- run: >-
uv lock
--check

pytest:
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -75,7 +97,7 @@ jobs:
UV_RESOLUTION: ${{ matrix.resolution }}
run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group test-coverage
--all-extras
Expand Down Expand Up @@ -123,7 +145,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group ci
--all-extras
Expand Down Expand Up @@ -188,7 +210,7 @@ jobs:
UV_RESOLUTION: ${{ matrix.resolution }}
run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group test
--extra ${{ matrix.extra }}
Expand Down Expand Up @@ -221,7 +243,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group lint

Expand Down Expand Up @@ -260,7 +282,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group lint

Expand Down Expand Up @@ -312,7 +334,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group security

Expand Down Expand Up @@ -394,7 +416,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group docs

Expand Down Expand Up @@ -431,7 +453,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--no-default-groups
--group pre-commit

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- run: >-
uv sync
--upgrade
--frozen
--all-extras

- run: >-
Expand Down Expand Up @@ -97,8 +97,8 @@ jobs:

- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
cache: pip
python-version: ${{ matrix.python-version }}
cache: pip

- name: install parsons from file
shell: bash
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,6 @@ old!_*
# bin files
bin/

# uv
uv.lock

# other
.buildinfo
bill_com_credentials.*
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /src
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

# Install parsons
RUN uv sync --upgrade --all-extras --python python3.11
RUN uv sync --python python3.11 --no-dev --all-extras --no-editable
ENV PATH="/src/.venv/bin:$PATH"

# The /app directory can house the scripts that will actually execute on this Docker image.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ lint = [
"ruff==0.15.10",
]
pre-commit = [
"pre-commit>=4.5.1,<4.7.0",
"pre-commit>=4.6.0",
]
security = [
"bandit[sarif]==1.9.4",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dbt-redshift": [
"dbt-redshift >= 1.8",
"dbt-core >= 1.8",
"lxml >= 6.0.1",
"lxml >= 6.1.0",
"rich >= 14",
],
"dbt-bigquery": ["dbt-bigquery >= 1.8", "dbt-core >= 1.8", "rich >= 14"],
Expand Down
6,042 changes: 6,042 additions & 0 deletions uv.lock

Large diffs are not rendered by default.

Loading