Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Replace travis with GitHub for running CI jobs #166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Dec 1, 2020
Merged
45 changes: 45 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test

on: [push, pull_request]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Prepare Ubuntu
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y pandoc ffmpeg
if: matrix.os == 'ubuntu-latest'
- name: Prepare OSX
run: brew install pandoc ffmpeg
if: matrix.os == 'macOS-latest'
- name: prepare Windows
run: choco install pandoc ffmpeg
if: matrix.os == 'windows-latest'
- name: Install dependencies
run: |
python -V
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r tests/requirements.txt
python -m pip install -r doc/requirements.txt
# This is needed in example scripts:
python -m pip install pillow
- name: Test
run: python -m pytest
- name: Test examples
run: python doc/examples/run_all.py
- name: Test documentation
run: python -m sphinx doc/ _build/ -b doctest
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@
keywords="audio SFS WFS Ambisonics".split(),
url="http://github.com/sfstoolbox/",
platforms='any',
python_requires='>=3.5',
python_requires='>=3.6',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
Expand Down