Skip to content

Commit

Permalink
Prevent wheel building on every push, and limit scipy version workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
mdenker committed Aug 12, 2021
1 parent 35a59b1 commit 1d29550
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
name: Build

on: [push, pull_request]

name: Build Wheels

# Trigger the workflow on push or pull request of the master
on:
push:
branches:
- master
pull_request:
branches:
- master

# Building wheels on Ubuntu and Windows systems
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
Expand Down
5 changes: 3 additions & 2 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
neo>=0.9.0
neo>=0.9.0,<0.10.0
numpy>=1.18.1
quantities>=0.12.1
scipy>=1.5.4
scipy<1.7.0
#scipy>=1.5.4
six>=1.10.0
tqdm

0 comments on commit 1d29550

Please sign in to comment.