Skip to content

Commit fa13f8e

Browse files
committed
Fix github action to use space-separated for extras as poetry 2.x expects
1 parent 933b3fd commit fa13f8e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/actions/python-environment/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ inputs:
1919
default: "."
2020

2121
extras:
22-
description: 'Comma-separated list of extras'
22+
description: 'Space-separated list of extras'
2323
required: false
2424

2525
use-cache:
@@ -53,7 +53,6 @@ runs:
5353
working-directory: ${{ inputs.working-directory }}
5454
shell: bash
5555
run: |
56-
EXTRAS=$(echo "${{ inputs.extras }}" | tr -d ' ')
5756
if [[ -n "$EXTRAS" ]]; then
5857
poetry install --extras "$EXTRAS"
5958
else

doc/changes/changes_1.3.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ pyupgrade_args = ("--py310-plus",)
1818

1919
* [#441](https://github.com/exasol/python-toolbox/issues/441): Switched nox task for `version:check` to use the config value of `version_file` to specify the location of the `version.py`
2020

21+
## 🐞 Bug Fixes
22+
* Updated `python-environment` action to use space-separated values for extras
23+
24+
2125
## ⚒️ Refactorings
2226

2327
* [#449](https://github.com/exasol/python-toolbox/issues/449): Refactored `dependency:licenses`:

0 commit comments

Comments
 (0)