From 7a7c045e2305a40e61ab2d653d63146993e12ac6 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 6 Jul 2020 00:05:58 -0400 Subject: [PATCH] ci: Travis fix, workaround Windows cibw (#394) --- .travis.yml | 4 +--- pyproject.toml | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01a68acc..e4f3f0a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,11 @@ branches: only: - master - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ - - henryiii/gha-test env: global: - TWINE_USERNAME=__token__ # Set TWINE_PASSWORD in Travis UI - - CIBW_BUILD_VERBOSITY=1 jobs: include: @@ -27,7 +25,7 @@ install: script: - sed -i '/numpy/d' pyproject.toml - - travis_wait python3 -m cibuildwheel --output-dir dist + - CIBW_BUILD_VERBOSITY=1 python3 -m cibuildwheel --output-dir dist deploy: diff --git a/pyproject.toml b/pyproject.toml index 6dcb4ee7..afe0b963 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,10 +2,8 @@ requires = [ "setuptools>=42", "wheel", - "numpy==1.13.3; python_version<='3.6'", - "numpy==1.14.5; python_version=='3.7'", - "numpy==1.17.3; python_version>='3.8'", - "setuptools_scm[toml]>=3.4,!=4.0.0" + "numpy", + "setuptools_scm[toml]>=4.1.2" ] build-backend = "setuptools.build_meta"