Skip to content
This repository was archived by the owner on Nov 29, 2024. It is now read-only.

Pin dependencies #372

Merged
merged 1 commit into from
Nov 19, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@5b62e7a9f186342c830e01bc69a4626fd1573b6e # v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@5b62e7a9f186342c830e01bc69a4626fd1573b6e # v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -67,4 +67,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@5b62e7a9f186342c830e01bc69a4626fd1573b6e # v2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.10-bullseye
FROM python:3.10-bullseye@sha256:5c6f3a5a8ab7f559a2d5adb543030c0306e5656a049be19fe51b1677ca8d04d7

WORKDIR /app

COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:ab5cd8c7946ae6a359a9aea9073b5effd311d40a65310380caae938a1abf55da /uv /uvx /bin/

# Install the project's dependencies using the lockfile and settings
RUN --mount=type=cache,target=/root/.cache/uv \
Expand Down
50 changes: 25 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,29 @@ license = "MIT License"

requires-python = ">=3.10, <3.11"
dependencies = [
"apscheduler>=3.10.4",
"colored>=2.2.4",
"connexion[flask,swagger-ui,uvicorn]>=3.1.0",
"apscheduler==3.10.4",
"colored==2.2.4",
"connexion[flask,swagger-ui,uvicorn]==3.1.0",
"flask-apscheduler==1.13.1",
"flask-migrate==4.0.7",
"flask-restx>=1.3.0",
"flask-restx==1.3.0",
"flask-sqlalchemy==3.1.1",
"flask==3.0.3",
"funding-service-design-utils>=5.0.8,<6.0.0",
"invoke>=2.2.0",
"funding-service-design-utils==5.0.8",
"invoke==2.2.0",
"jsonpath-rw-ext==1.2.2",
"marshmallow-sqlalchemy==1.0.0",
"openapi-spec-validator>=0.7.1",
"openpyxl>=3.1.5",
"pandas>=2.2.2",
"openapi-spec-validator==0.7.1",
"openpyxl==3.1.5",
"pandas==2.2.2",
"prance==23.6.21.0",
"psycopg2-binary==2.9.9",
"python-dateutil>=2.9.0.post0",
"python-dateutil==2.9.0.post0",
"requests==2.32.3",
"slugify>=0.0.1",
"slugify==0.0.1",
"sqlalchemy-json==0.7.0",
"sqlalchemy-utils>=0.41.2",
"sqlalchemy>=2.0.31",
"sqlalchemy-utils==0.41.2",
"sqlalchemy==2.0.31",
"swagger-ui-bundle==1.1.0",
"uvicorn==0.30.3",
]
Expand All @@ -45,16 +45,16 @@ count = true

[dependency-groups]
dev = [
"asserts>=0.13.1",
"black>=24.4.2",
"click>=8.1.7",
"debugpy>=1.8.2",
"deepdiff>=7.0.1",
"flake8-pyproject>=1.2.3",
"moto[s3,sqs]>=5.0.14",
"pre-commit~=4.0.0",
"pytest>=8.3.1",
"pytest-env>=1.1.3",
"pytest-flask>=1.3.0",
"pytest-mock>=3.14.0",
"asserts==0.13.1",
"black==24.4.2",
"click==8.1.7",
"debugpy==1.8.2",
"deepdiff==7.0.1",
"flake8-pyproject==1.2.3",
"moto[s3,sqs]==5.0.14",
"pre-commit==4.0.1",
"pytest==8.3.1",
"pytest-env==1.1.3",
"pytest-flask==1.3.0",
"pytest-mock==3.14.0",
]
54 changes: 27 additions & 27 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading