Skip to content

Commit 7a7c045

Browse files
authored
ci: Travis fix, workaround Windows cibw (#394)
1 parent f78d296 commit 7a7c045

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ branches:
44
only:
55
- master
66
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
7-
- henryiii/gha-test
87

98
env:
109
global:
1110
- TWINE_USERNAME=__token__
1211
# Set TWINE_PASSWORD in Travis UI
13-
- CIBW_BUILD_VERBOSITY=1
1412

1513
jobs:
1614
include:
@@ -27,7 +25,7 @@ install:
2725

2826
script:
2927
- sed -i '/numpy/d' pyproject.toml
30-
- travis_wait python3 -m cibuildwheel --output-dir dist
28+
- CIBW_BUILD_VERBOSITY=1 python3 -m cibuildwheel --output-dir dist
3129

3230

3331
deploy:

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
requires = [
33
"setuptools>=42",
44
"wheel",
5-
"numpy==1.13.3; python_version<='3.6'",
6-
"numpy==1.14.5; python_version=='3.7'",
7-
"numpy==1.17.3; python_version>='3.8'",
8-
"setuptools_scm[toml]>=3.4,!=4.0.0"
5+
"numpy",
6+
"setuptools_scm[toml]>=4.1.2"
97
]
108

119
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)