Skip to content

Commit

Permalink
Update version and ci config.
Browse files Browse the repository at this point in the history
  • Loading branch information
smrg-lm committed Nov 6, 2020
1 parent bf3d0af commit 78ca64b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,20 @@ python:
- "3.7"
- "3.8"
- "3.9"
- "nightly"
# - "nightly"
- "pypy3"
install:
# - pip install -r requirements.txt
- python setup.py install #develop --user # Fails selectively for different versions.
script:
- python -m unittest discover -s tests
deploy:
provider: pipy
username: __token__
password:
secure: hEgsLjnQjHPZPRZxqo524DRA1MFHoIXHC7mnwfXaTgYjIanIN9VIVwVbahGz+JoP0CoUFve73vM6LK3os2fYTCPaXyRAmy02xjWnkx7hMf+cBbSixaPMmFMTM/4PEuENT7zoFMCw9ytEH3RpE67u7QC74x1vLsAHE0ZxjOIpJN3kolQU3/OGoVslbDca084Y3LOMoRzdSBWhgmU4MMqSO5rOISfl2Eaj1gpNZsKF0hKw6e8M6ZQ5mCG0JqEMIuM3MKsf4hKPMlZpMto+k7sm94bQDmbao8VF2LbxfzBmfZZxcXBmn7QpiDsEvAR9diSZ59IC2qq06rhcRmsw+rhrLfWDYIsKgO+uGyqxXwKh1YXPori/1yCYMwED0wzx/iAAAgifr5JcXaOdRiWPNXuCGuNP1PGgtqLRsI/kE8KuTkj24CDGqVVQcHXG9bY9tSmIuqdWq4tci4Om3x6GR4dK7SPAcptoUBku/ntcfTy/0WGrLLqHnns5DJCeo9FAMuwX3hZzAWCa4uli1/O/Pju+1H+xNQWn0u/qTb2nTi2N650pvBZ0J9ZPMPBqk/mMVCNIfTLSaFLp0mVymhVbT58cLWC3j6ZvlWYW5tN8H84e4yhyYsOeRt4EA5x4hBp4vW6Aht27QeMmZ4tx5maf6ygIuDVEIxdSOXhpTnyYkV8SXlw=
distributions: 'sdist bdist_wheel'
skip_existing: true
on:
tags: true
edge: true
2 changes: 1 addition & 1 deletion sc3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '0.7.0'
__version__ = '1.0.0a'
__all__ = ['base', 'seq', 'synth']


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

setuptools.setup(
name='sc3',
version='0.7.0',
version='1.0.0a',
author='Lucas Samaruga',
author_email='samarugalucas@gmail.com',
license='GPLv3',
platforms='Any',
description='SuperCollider 3 class library Python 3 port',
description='SuperCollider library for Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/smrg-lm/sc3',
Expand All @@ -30,5 +30,5 @@
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha'
],
keywords='SuperCollider sound synthesis music composition'
keywords='SuperCollider sound synthesis music-composition'
)

0 comments on commit 78ca64b

Please sign in to comment.