diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index df6900c2..967f139a 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -8,7 +8,7 @@ on: jobs: release: name: External - uses: SINTEF/ci-cd/.github/workflows/cd_release.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/cd_release.yml@v2.8.3 if: github.repository == 'SINTEF/entities-service' && startsWith(github.ref, 'refs/tags/v') with: # General diff --git a/.github/workflows/ci_automerge_dependencies.yml b/.github/workflows/ci_automerge_dependencies.yml index e3cafc3f..d9d1a4ed 100644 --- a/.github/workflows/ci_automerge_dependencies.yml +++ b/.github/workflows/ci_automerge_dependencies.yml @@ -7,7 +7,7 @@ on: jobs: update-dependencies-branch: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_automerge_prs.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/ci_automerge_prs.yml@v2.8.3 if: github.repository_owner == 'SINTEF' && ( ( startsWith(github.event.pull_request.head.ref, 'dependabot/') && github.actor == 'dependabot[bot]' ) || ( github.event.pull_request.head.ref == 'ci/update-pyproject' && github.actor == 'TEAM4-0' ) || ( github.event.pull_request.head.ref == 'pre-commit-ci-update-config' && github.actor == 'pre-commit-ci[bot]' ) ) secrets: PAT: ${{ secrets.TEAM40_PAT }} diff --git a/.github/workflows/ci_cd_updated_main.yml b/.github/workflows/ci_cd_updated_main.yml index dc263a02..f3865ac1 100644 --- a/.github/workflows/ci_cd_updated_main.yml +++ b/.github/workflows/ci_cd_updated_main.yml @@ -7,7 +7,7 @@ on: jobs: update-deps-branch-and-docs: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_cd_updated_default_branch.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/ci_cd_updated_default_branch.yml@v2.8.3 if: github.repository_owner == 'SINTEF' with: # General diff --git a/.github/workflows/ci_check_dependencies.yml b/.github/workflows/ci_check_dependencies.yml index a9fb2b87..2c58627b 100644 --- a/.github/workflows/ci_check_dependencies.yml +++ b/.github/workflows/ci_check_dependencies.yml @@ -9,7 +9,7 @@ on: jobs: check-dependencies: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_check_pyproject_dependencies.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/ci_check_pyproject_dependencies.yml@v2.8.3 if: github.repository_owner == 'SINTEF' with: git_username: "TEAM 4.0[bot]" diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index d32f8aec..b61bfa60 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -10,7 +10,7 @@ on: jobs: basic-tests: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_tests.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/ci_tests.yml@v2.8.3 with: # General setup install_extras: "[dev]" diff --git a/.github/workflows/ci_update_dependencies.yml b/.github/workflows/ci_update_dependencies.yml index a49ec6a3..a28969a7 100644 --- a/.github/workflows/ci_update_dependencies.yml +++ b/.github/workflows/ci_update_dependencies.yml @@ -9,7 +9,7 @@ on: jobs: create-collected-pr: name: External - uses: SINTEF/ci-cd/.github/workflows/ci_update_dependencies.yml@v2.8.2 + uses: SINTEF/ci-cd/.github/workflows/ci_update_dependencies.yml@v2.8.3 if: github.repository_owner == 'SINTEF' with: # General diff --git a/pyproject.toml b/pyproject.toml index 6f69eebd..33901ab8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,9 +42,9 @@ requires-python = "~=3.10" dynamic = ["version", "description"] dependencies = [ - "fastapi ~=0.115.0", + "fastapi ~=0.115.4", "httpx ~=0.27.2", - "pydantic-settings ~=2.5", + "pydantic-settings ~=2.6", "pymongo ~=4.10", "python-dotenv ~=1.0", "uvicorn >=0.24.0,<1", @@ -58,7 +58,7 @@ cli = [ ] testing = [ "cryptography ~=43.0", - "dlite-python ~=0.5.22", + "dlite-python ~=0.5.23", "mongomock ~=4.2", "numpy <2", # requirement for DLite v0.5.16, which does not support NumPy v2 "pytest ~=8.3", @@ -71,7 +71,7 @@ server = [ "gunicorn >=21.2.0,<24", ] dev = [ - "pre-commit ~=3.8", + "pre-commit ~=4.0", "entities-service[cli,testing]", ]