Skip to content

Commit 8862061

Browse files
committed
pipenv update
1 parent 32307e8 commit 8862061

File tree

12 files changed

+489
-543
lines changed

12 files changed

+489
-543
lines changed

.github/workflows/test-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-python@v4
1313
with:
14-
python-version: "3.11"
14+
python-version: "3.12"
1515
- run: pip install pipenv
1616
- run: make test
1717
validate:

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11.6
1+
3.12.0

example/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ resource "aws_lambda_function" "custom_responders" {
9999
function_name = "${local.name}-api-${each.value}"
100100
handler = "index.handler"
101101
role = module.slackbot.roles["lambda"].arn
102-
runtime = "python3.11"
102+
runtime = "python3.12"
103103
source_code_hash = data.archive_file.custom_responders[each.value].output_base64sha256
104104
}
105105

functions/authorizer/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ test: .venv
1414

1515
.PHONY: all build clean test
1616

17-
.venv: Pipfile
17+
Pipfile.lock: Pipfile | .venv
18+
pipenv lock
19+
touch $@
20+
21+
.venv:
1822
mkdir -p $@
1923
pipenv install --dev
2024
touch $@

functions/authorizer/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ pytest = "*"
1515
pytest-cov = "*"
1616

1717
[requires]
18-
python_version = "3.11"
18+
python_version = "3.12"

functions/authorizer/Pipfile.lock

Lines changed: 156 additions & 178 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/oauth/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ test: .venv
1414

1515
.PHONY: all build clean test
1616

17-
.venv: Pipfile
17+
Pipfile.lock: Pipfile | .venv
18+
pipenv lock
19+
touch $@
20+
21+
.venv:
1822
mkdir -p $@
1923
pipenv install --dev
2024
touch $@

functions/oauth/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ pytest = "*"
1515
pytest-cov = "*"
1616

1717
[requires]
18-
python_version = "3.11"
18+
python_version = "3.12"

functions/oauth/Pipfile.lock

Lines changed: 156 additions & 178 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/transformer/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ test: .venv
1414

1515
.PHONY: all build clean test
1616

17-
.venv: Pipfile
17+
Pipfile.lock: Pipfile | .venv
18+
pipenv lock
19+
touch $@
20+
21+
.venv:
1822
mkdir -p $@
1923
pipenv install --dev
2024
touch $@

0 commit comments

Comments
 (0)