-
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.
* Bump piped from `05de4b9` to `4d7f998` Bumps [piped](https://github.com/FasterSpeeding/Piped) from `05de4b9` to `4d7f998`. - [Release notes](https://github.com/FasterSpeeding/Piped/releases) - [Commits](FasterSpeeding/Piped@05de4b9...4d7f998) --- updated-dependencies: - dependency-name: piped dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Update config * Linting fixes * Fix action * Resync piped * Freeze PR dependency changes * Reformat PR code * Update dockerfile * Update Dockerfile * Fix dockerfile --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Faster Speeding <[email protected]> Co-authored-by: always-on-duty[bot] <120557446+always-on-duty[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8e0cadb
commit ea76485
Showing
16 changed files
with
867 additions
and
160 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: "Install Python" | ||
description: "Install a specific Python version" | ||
inputs: | ||
python-version: | ||
description: "Python version to install" | ||
required: false | ||
default: "3.11" | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Set up Python ${{ inputs.python-version }} | ||
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | ||
id: install-py | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Install Nox | ||
run: pipx install uv nox[uv] --python "${{ steps.install-py.outputs.python-path }}" | ||
shell: bash |
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
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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,11 +1,17 @@ | ||
FROM python:3.13-alpine | ||
FROM registry.access.redhat.com/ubi9/python-312@sha256:d1244378f7ab72506d8d91cadebbf94c893c2828300f9d44aee4678efec62db9 AS install | ||
|
||
WORKDIR /code | ||
|
||
COPY ./runner.py ./runner.py | ||
COPY ./dev-requirements/constraints.txt ./requirements.txt | ||
COPY ./pyproject.toml ./ | ||
COPY ./uv.lock ./ | ||
|
||
RUN pip install uv && \ | ||
uv sync --frozen --only-group main | ||
|
||
RUN pip install -Ur requirements.txt | ||
FROM registry.access.redhat.com/ubi9/python-312@sha256:d1244378f7ab72506d8d91cadebbf94c893c2828300f9d44aee4678efec62db9 | ||
|
||
COPY --from=install /code/.venv ./venv | ||
COPY ./runner.py ./runner.py | ||
|
||
STOPSIGNAL SIGINT | ||
ENTRYPOINT ["python", "runner.py"] | ||
ENTRYPOINT ["./venv/bin/python", "runner.py"] |
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
Submodule piped
updated
69 files
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
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,4 +0,0 @@ | ||
click | ||
requests | ||
python-dateutil | ||
python-dotenv | ||
Oops, something went wrong.