Skip to content

Commit b465ac5

Browse files
committed
release: 2.0.0-alpha7
1 parent 4d49fa3 commit b465ac5

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Install and update using `pipenv`_ or `pip`_:
5353

5454
.. code-block:: text
5555
56-
pip install stellar-sdk==2.0.0a6
56+
pip install stellar-sdk==2.0.0a7
5757
5858
5959
A Simple Example

docs/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To install py-stellar-sdk, use pipenv to install the module:
1111

1212
.. code-block:: text
1313
14-
pipenv install stellar-sdk==2.0.0a6
14+
pipenv install stellar-sdk==2.0.0a7
1515
1616
If you're not using `pipenv <https://docs.pipenv.org/>`_, you should.
1717
Otherwise, you can install it via plain old `pip <https://pip.pypa.io/en/stable/quickstart/>`_. More on installing Python
@@ -29,5 +29,5 @@ You can clone `the repository <https://github.com/StellarCN/py-stellar-base>`_ d
2929
3030
git clone https://github.com/StellarCN/py-stellar-base.git
3131
cd py-stellar-base
32-
git checkout 2.0.0-alpha6
32+
git checkout 2.0.0-alpha7
3333
pip install .

stellar_sdk/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon."
1212
__url__ = "https://github.com/StellarCN/py-stellar-base"
1313
__issues__ = "{}/issues".format(__url__)
14-
__version__ = "2.0.0-alpha6"
14+
__version__ = "2.0.0-alpha7"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

stellar_sdk/client/base_sync_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from abc import ABCMeta, abstractmethod
2-
from typing import Union, Dict, Any, Generator
2+
from typing import Dict, Any, Generator
33

44
from .response import Response
55

stellar_sdk/transaction.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import List, Union
22

3-
from .exceptions import ValueError
43
from .keypair import Keypair
54
from .memo import NoneMemo, Memo
65
from .operation.operation import Operation

0 commit comments

Comments
 (0)