Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#67: Fixed Python version for AWS Codebuild #68

Merged
merged 4 commits into from
Jun 4, 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
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [1.3.1](changes_1.3.1.md)
* [1.3.0](changes_1.3.0.md)
* [1.2.1](changes_1.2.1.md)
* [1.2.0](changes_1.2.0.md)
Expand Down
23 changes: 23 additions & 0 deletions doc/changes/changes_1.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# script-languages-container-ci-setup 1.3.1, released 2024-06-04.

Code name: Fix Python version for AWS Codebuild

## Summary

Fix Python version for AWS Codebuild

## Bug Fixes

- #67: Fixed Python version for AWS Codebuild

## Features / Enhancements

n/a

## Documentation

n/a

## Refactoring

- #65: Updated minimum Python
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ phases:

install:
runtime-versions:
python: 3.8
python: 3.10
commands:
- git submodule update --init --recursive
- curl -sSL https://install.python-poetry.org | python3 -
- export PATH=$PATH:$HOME/.local/bin
- poetry env use $(command -v "python3.8")
- poetry env use $(command -v "python3.10")
- poetry install

pre_build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ phases:

install:
runtime-versions:
python: 3.8
python: 3.10
commands:
- git submodule update --init --recursive
- curl -sSL https://install.python-poetry.org | python3 -
- export PATH=$PATH:$HOME/.local/bin
- poetry env use $(command -v "python3.8")
- poetry env use $(command -v "python3.10")
- poetry install

pre_build:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-script-languages-container-ci-setup"
version = "1.3.0"
version = "1.3.1"
description = "Manages AWS cloud CI build infrastructure."

license = "MIT"
Expand Down