|
| 1 | +# This repository. PyPI and Anaconda test and release package uploads are only done if |
| 2 | +# the repository the workflow is running in matches this (i.e. is not a fork). Optional, |
| 3 | +# if not set, package uploads are skipped. |
| 4 | +export RELEASE_REPO="labscript-suite/labscript-devices" |
| 5 | + |
| 6 | +# Username with which to upload conda packages. If not given, anaconda uploads are |
| 7 | +# skipped. |
| 8 | +export ANACONDA_USER="labscript-suite" |
| 9 | + |
| 10 | +# Whether (true or false) to upload releases to PyPI, non-releases to Test PyPI, |
| 11 | +# releases to Anaconda, non-releases to Anaconda test label. Only used if the repository |
| 12 | +# the workflow is running in matches RELEASE_REPO, otherwise uploads are skipped. |
| 13 | +# Anaconda uploads require ANACONDA_USER be specified and ANACONDA_API_TOKEN secret be |
| 14 | +# set. Optional, all default to true. |
| 15 | +export PYPI_UPLOAD="" |
| 16 | +export TESTPYPI_UPLOAD="" |
| 17 | +export ANACONDA_UPLOAD="" |
| 18 | +export TEST_ANACONDA_UPLOAD="" |
| 19 | + |
| 20 | +# Which Python version to use for pure wheel builds, sdists, and as the host Python for |
| 21 | +# cibuildwheel. Optional, defaults to the second-most recent minor Python version. |
| 22 | +export DEFAULT_PYTHON="" |
| 23 | + |
| 24 | +# Comma-separated list of Python versions to build conda packages for. Only used if |
| 25 | +# HAS_ENV_MARKERS=true or PURE=false, otherwise a noarch conda package is built instead. |
| 26 | +# Optional, defaults to all non-end-of-life stable Python minor versions. |
| 27 | +export CONDA_PYTHONS="" |
| 28 | + |
| 29 | +# Environment variable set in the envionment that `cibuildwheel` runs in instructing it |
| 30 | +# which Pythons to build for, as a space-separated list of specifiers in the format |
| 31 | +# specified by `cibuildwheel`. Only used if PURE=false. Optional, defaults to all |
| 32 | +# non-end-of-life stable CPython versions. |
| 33 | +export CIBW_BUILD="" |
| 34 | + |
| 35 | +# Name of Python package. Optional, defaults to name from the package metadata |
| 36 | +export PKGNAME="" |
| 37 | + |
| 38 | +# Version of Python package. Optional, defaults to version from the package metadata |
| 39 | +export PKGVER="" |
| 40 | + |
| 41 | +# Whether the Python package is pure (true) or impure (false). Optional, defaults to |
| 42 | +# false if the setuptools package has extension modules or libraries, otherwise true. |
| 43 | +export PURE="" |
| 44 | + |
| 45 | +# Whether (true or false) the Python package has dependencies that vary by platform or |
| 46 | +# Python version. Optional, Defaults to presence of env markers in package metadata. |
| 47 | +export HAS_ENV_MARKERS="" |
0 commit comments