Skip to content

Commit 016009c

Browse files
committed
0.1.5
1 parent 94377b0 commit 016009c

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ python:
55
- "3.4"
66
- "3.5"
77
- "3.6"
8-
- "3.7"
9-
- nightly
108

119
before_install:
1210
- sudo apt-get -qq update

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.5
2+
3+
- Support triangle wave.
4+
- Contributor: @AntiMatterAMA
5+
16
## 0.1.4
27

38
- Fix channels of Player class from 2 to 1 to play proper sound.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ $ pip install pyaudio
7171

7272
## Supported OS
7373

74-
- macOS Sierra
74+
- macOS 10.12 and above
7575
- Ubuntu 16.04
7676

7777
## Supported versions

setup.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
from setuptools import setup, find_packages
2-
version = '0.1.4'
3-
4-
try:
5-
import pypandoc
6-
read_md = lambda f: pypandoc.convert(f, 'rst')
7-
except ImportError:
8-
print("warning: pypandoc module not found, could not convert Markdown to RST")
9-
read_md = lambda f: open(f, 'r').read()
2+
version = '0.1.5'
103

114
setup(
125
name='synthesizer',
@@ -28,7 +21,8 @@
2821
packages=find_packages(exclude=['test']),
2922
include_package_data=True,
3023
zip_safe=True,
31-
long_description=read_md('README.md'),
24+
long_description=open('README.md').read(),
25+
long_description_content_type='text/markdown',
3226
test_suite='nose.collector',
3327
install_requires=[
3428
'enum34>=1.1.6',

0 commit comments

Comments
 (0)