ImperialCollegeLondon / pyrealm

Development of the pyrealm package, providing an integrated toolbox for modelling plant productivity, growth and demography using Python.
https://pyrealm.readthedocs.io/
MIT License
21 stars 8 forks source link

Profiling python version parsed as float #213

Closed davidorme closed 5 months ago

davidorme commented 5 months ago

Describe the bug

The pyrealm_profiling.yaml contains:

    - uses: actions/setup-python@v5
      with:
        python-version: 3.10

And that gets parsed as a float, so falls over trying to install python 3.1

It should be:

    - uses: actions/setup-python@v5
      with:
        python-version: "3.10"

To Reproduce

See here: https://github.com/ImperialCollegeLondon/pyrealm/actions/runs/8703804264