Skip to content
This repository was archived by the owner on Oct 2, 2021. It is now read-only.

Commit 71c6c0a

Browse files
committed
Added changelog and made new release - v2.0
1 parent 72467bf commit 71c6c0a

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
0.2.0 - Apr 19, 2017. (sha 72467bffda3842575bffe0f6462ec2a2fa8f07c3)
2+
-------
3+
* Added support for folder creation, copying, deletion
4+
* Added support for wildcard operations
5+
* Misc. bug fixes
6+
7+
8+
0.1.0 - Initial release
9+
-------
10+
* Initial release of python-genomespaceclient

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from setuptools import setup, find_packages
22

33
setup(name='python-genomespaceclient',
4-
version="0.1.8",
4+
version="0.2",
55
description='Python bindings and commandline client to the GenomeSpace'
66
' API',
77
author='GVL Project',
88
author_email='help@genome.edu.au',
99
url='http://python-genomespaceclient.readthedocs.org/',
10-
install_requires=['requests', 'cloudbridge>=0.3,<0.4'],
10+
install_requires=['cloudbridge>=0.3,<0.4', 'requests'],
1111
extras_require={
1212
'dev': ['tox', 'sphinx']
1313
},

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
envlist = {py27,py35,pypy}-{aws,openstack}
88

99
[testenv]
10-
commands = {envpython} -m coverage run --branch --source=genomespaceclient setup.py test
10+
commands = {envpython} -m coverage run --branch --source=genomespaceclient setup.py test {posargs}
1111
setenv =
1212
aws: GENOMESPACE_TEST_FOLDER={env:GENOMESPACE_TEST_FOLDER_AWS}
1313
openstack: GENOMESPACE_TEST_FOLDER={env:GENOMESPACE_TEST_FOLDER_OS}

0 commit comments

Comments
 (0)