We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should be possible to generate constraint files for all Python versions in a oneliner or script, using Conda. For instance:
supported_versions=(3.7 3.8 3.9 3.10 3.11) for version in ${supported_versions[@]}; do conda create -n py${version} "python==${version}.*" --force -y conda activate py${version} pip install git+https://github.com/ComPWA/update-pip-constraints@main update-pip-constraints done
In addition, supported_versions could be determined from setup.cfg, as happens in ComPWA/actions/create-python-version-matrix@v1.
supported_versions
setup.cfg
The text was updated successfully, but these errors were encountered:
redeboer
No branches or pull requests
It should be possible to generate constraint files for all Python versions in a oneliner or script, using Conda. For instance:
In addition,
supported_versions
could be determined fromsetup.cfg
, as happens in ComPWA/actions/create-python-version-matrix@v1.The text was updated successfully, but these errors were encountered: