We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1861f16 commit 39d8afeCopy full SHA for 39d8afe
.circleci/config.yml
@@ -47,6 +47,7 @@ jobs:
47
command: python -m cibuildwheel --output-dir wheelhouse
48
environment:
49
CIBW_BUILD: "cp<< parameters.python-version >>-*"
50
+ CIBW_ENVIRONMENT: "CIRCLECI=$CIRCLECI CIRCLE_TAG=$CIRCLE_TAG"
51
CIBW_SKIP: "*-musllinux_* pp*"
52
CIBW_ARCHS_LINUX: "x86_64"
53
CIBW_BEFORE_TEST: pip install .[test]
build_tools/github/deploy.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
# Extract version from git tag
4
-VERSION=$(echo ${GITHUB_REF} | sed 's/refs\/tags\/v\?//')
+VERSION=${GITHUB_REF#refs/tags/v}
5
6
if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.?[0-9]*[a-zA-Z]+[0-9]*$ ]]; then
7
echo "Pre-release version: $VERSION - Uploading to test pypi"
0 commit comments