rusackas commented on code in PR #27906: URL: https://github.com/apache/superset/pull/27906#discussion_r1560023314
########## .github/actions/setup-backend/action.yml: ########## @@ -13,22 +13,39 @@ inputs: description: 'Type of requirements to install. Options: base, development, default' required: false default: 'dev' + install-superset: + description: 'Whether to install Superset itself. If false, only python is installed' + required: false + default: 'true' runs: using: 'composite' steps: - - name: Set up Python ${{ inputs.python-version }} + - name: Interpret Python Version + id: set-python-version + shell: bash + run: | + if [ "${{ inputs.python-version }}" = "current" ]; then + echo "PYTHON_VERSION=3.10" >> $GITHUB_ENV Review Comment: No problem for this PR, but I'm thinking at some point we might want to keep our npm/node/python/whatever version numbers in a JSON file at the repo's root, so they can be pulled into scripts, documentation, etc. as needed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org