Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma-m committed Mar 17, 2019
1 parent 94377b0 commit 016009c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- nightly

before_install:
- sudo apt-get -qq update
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.5

- Support triangle wave.
- Contributor: @AntiMatterAMA

## 0.1.4

- Fix channels of Player class from 2 to 1 to play proper sound.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $ pip install pyaudio

## Supported OS

- macOS Sierra
- macOS 10.12 and above
- Ubuntu 16.04

## Supported versions
Expand Down
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
from setuptools import setup, find_packages
version = '0.1.4'

try:
import pypandoc
read_md = lambda f: pypandoc.convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
version = '0.1.5'

setup(
name='synthesizer',
Expand All @@ -28,7 +21,8 @@
packages=find_packages(exclude=['test']),
include_package_data=True,
zip_safe=True,
long_description=read_md('README.md'),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
test_suite='nose.collector',
install_requires=[
'enum34>=1.1.6',
Expand Down

0 comments on commit 016009c

Please sign in to comment.