Skip to content

Commit

Permalink
version 1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Oct 31, 2018
1 parent b3a5c44 commit 1385f33
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ after_success:
notifications:
email: false

before_deploy:
- perl -i -pe's/"stellar-base"/"stellar-sdk"/g' setup.py

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

from setuptools import setup, find_packages

package_name = "stellar-base"
package_name = "stellar-sdk" # or stellar-base

exec(open("stellar_base/version.py").read())

Expand All @@ -28,7 +28,7 @@
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
Expand All @@ -43,4 +43,4 @@
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=open(requirements_file).readlines(),
tests_require=tests_require
)
)
5 changes: 5 additions & 0 deletions stellar_base/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
from .version import __version__

from .keypair import Keypair
from .builder import Builder
from .address import Address
from .horizon import Horizon
2 changes: 1 addition & 1 deletion stellar_base/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def offers(self, cursor=None, order='asc', limit=10, sse=False):
"""
return self.horizon.account_offers(self.address, cursor=cursor, order=order, limit=limit, sse=sse)

def transactions(self,cursor=None, order='asc', limit=10, sse=False):
def transactions(self, cursor=None, order='asc', limit=10, sse=False):
"""Retrieve the transactions JSON from this instance's Horizon server.
Retrieve the transactions JSON response for the account associated with
Expand Down
2 changes: 1 addition & 1 deletion stellar_base/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.3"
__version__ = "1.0.0"

0 comments on commit 1385f33

Please sign in to comment.