You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the value of FUTURE_PYTHON_VERSION in shared/packages.py is set as a range, currently 3.13.0-alpha - 3.13.0. That's a bit clunky because that version string is inserted in many places.
The documentation for the setup-python GH action mentions a cleaner way that uses the flag allow-prereleases: true, so you could define FUTURE_PYTHON_VERSION as a "clean" 3.13 and write it all like this:
Right now the value of
FUTURE_PYTHON_VERSION
inshared/packages.py
is set as a range, currently3.13.0-alpha - 3.13.0
. That's a bit clunky because that version string is inserted in many places.The documentation for the
setup-python
GH action mentions a cleaner way that uses the flagallow-prereleases: true
, so you could defineFUTURE_PYTHON_VERSION
as a "clean"3.13
and write it all like this:See https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases.
The text was updated successfully, but these errors were encountered: