Skip to content

Commit

Permalink
#67: Fixed Python version for AWS Codebuild (#68)
Browse files Browse the repository at this point in the history
fixes #67
  • Loading branch information
tomuben authored Jun 4, 2024
1 parent e27b868 commit 9351359
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 5 deletions.
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

0 comments on commit 9351359

Please sign in to comment.