Skip to content
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ concurrency:
cancel-in-progress: true

env:
POETRY_VERSION: 1.8.3
POETRY_VERSION: 2.0.0

jobs:
setup:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

outputs:
examples-matrix: ${{ steps.examples-matrix.outputs.examples-matrix }}
Expand All @@ -50,7 +50,7 @@ jobs:
echo "$examples" >> "$GITHUB_OUTPUT"

prefetch:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
Expand All @@ -77,7 +77,7 @@ jobs:
# allow it.
if: ${{ github.ref != 'refs/heads/main' }}
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
Expand All @@ -91,7 +91,7 @@ jobs:

lint-black:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
package: [pangea-django, pangea-sdk]
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

lint-isort:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
package: [pangea-django, pangea-sdk]
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:

sdk-lint-mypy:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
package: [pangea-django, pangea-sdk]
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:

sdk-test-unit:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:

sdk-docs:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./packages/pangea-sdk
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:

examples:
needs: [setup, prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
example: ${{ fromJSON(needs.setup.outputs.examples-matrix) }}
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:

django-test-unit:
needs: [prefetch]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
Expand Down
49 changes: 46 additions & 3 deletions examples/asyncio/audit/poetry.lock

Large diffs are not rendered by default.

14 changes: 11 additions & 3 deletions examples/asyncio/audit/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
[tool.poetry]
[project]
name = "audit-examples"
version = "2.0.0"
description = "This is a set of examples about how to use python SDK to communicate with Vault service"
authors = ["H. Andres Tournour <andres.tournour@pangea.cloud>"]
authors = [
{name = "H. Andres Tournour", email = "andres.tournour@pangea.cloud"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pangea-sdk"
]

[tool.poetry]
packages = [{include = "audit_examples"}]

[tool.poetry.dependencies]
Expand All @@ -22,5 +30,5 @@ line-length = 120
profile = "black"

[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
Loading