Skip to content

Commit

Permalink
Release 0.7.0 (#361)
Browse files Browse the repository at this point in the history
* Prepare Release 0.7.0

* Build wheels using GH Actions
* exclude pp27, pp35
* skip PyPy
  • Loading branch information
mbeyeler committed Apr 5, 2021
1 parent a6f83b6 commit 8c2982d
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 64 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/wheels.yml
@@ -0,0 +1,32 @@
name: Wheels

on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]

steps:
- uses: actions/checkout@v2

- name: Build wheels
uses: joerick/cibuildwheel@v1.10.0
env:
CIBW_BEFORE_BUILD: "pip install -r requirements.txt && pip install -e ."
CIBW_SKIP: "cp27-* cp35-* pp*"

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
4 changes: 4 additions & 0 deletions AUTHORS
Expand Up @@ -12,13 +12,17 @@ pulse2percept that much better:
Bliss, Jake (University of California, Santa Barbara, CA)
Boynton, Geoffrey M. (University of Washington, Seattle, WA)
Contier, Oliver (Otto-von-Guericke University, Magdeburg, Germany)
Crowley, Conrad (Cork, Ireland)
Fine, Ione (University of Washington, Seattle, WA)
Finn, Kate (University of Michigan, Ann Arbor, MI)
Gan, Emma (Johns Hopkins University, Baltimore, MD)
George, Gareth (University of California, Santa Barbara, CA)
Ghaffari, Dorsa H. (University of Michigan, Ann Arbor, MI)
Granley, Jacob (University of California, Santa Barbara, CA)
Kasowski, Justin (University of California, Santa Barbara, CA)
Lin, Hongzhen (University of California, Santa Barbara, CA)
Luntzel, Jon F. (University of Washington, Seattle, WA)
Mizrahi, Ori (University of California, Santa Barbara, CA)
Nguyen, Dana (University of California, Santa Barbara, CA)
Raghulan, Rashi (University of California, Santa Barbara, CA)
Rokem, Ariel (University of Washington, Seattle, WA)
Expand Down
62 changes: 0 additions & 62 deletions azure-pipelines.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pulse2percept/version.py
@@ -1 +1 @@
__version__ = '0.7.0.dev0'
__version__ = '0.7.0'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -30,7 +30,7 @@
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = 'Michael Beyeler, Ariel Rokem'
MAINTAINER_EMAIL = 'mbeyeler@uw.edu, arokem@gmail.com'
MAINTAINER_EMAIL = 'mbeyeler@ucsb.edu, arokem@gmail.com'
URL = 'https://github.com/pulse2percept/pulse2percept'
DOWNLOAD_URL = 'https://pypi.org/project/pulse2percept/#files'
LICENSE = 'new BDS'
Expand Down

0 comments on commit 8c2982d

Please sign in to comment.