Skip to content

Commit

Permalink
plone/meta: py_versions needs to be spelled in an ugly way.
Browse files Browse the repository at this point in the history
* With `3.8` you get an error in GitHub Actions: `Error when evaluating 'strategy' for job 'test'. plone/meta/.github/workflows/test.yml@main (Line: 23, Col: 25): Unexpected value '3.8'`
* With `["3.8"]` you get a yaml error running config-package from plone/meta, as it gets spelled like this: `py-versions: '['3.8']'` (Not sure if I have the single or double quotes right.)
  • Loading branch information
mauritsvanrees committed Jun 26, 2024
1 parent 3cd1cd0 commit 2264ff6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: plone/meta/.github/workflows/test.yml@main
with:

py-versions: '3.8'
py-versions: '["3.8"]'
release_ready:
uses: plone/meta/.github/workflows/release_ready.yml@main
circular:
Expand Down
2 changes: 1 addition & 1 deletion .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ commit-id = "a89af8f2"
codespell_skip = "plone-*.cfg"

[github]
py_versions = "3.8"
py_versions = "[\"3.8\"]"
jobs = [
"qa",
"test",
Expand Down

0 comments on commit 2264ff6

Please sign in to comment.