Skip to content

Commit 313a086

Browse files
authored
Merge pull request #4 from FusionSolutions/patch
Upgrade to 0.0.6
2 parents b486a62 + edd9327 commit 313a086

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This utility makes easier to use Fusion Explorer API which uses JSON-RPC protoco
66

77
## Installation
88

9-
Requires python 3.8 or later version.
9+
Requires python version 3.5 or later.
1010

1111
To install the latest release on [PyPI](https://pypi.org/project/python-feclient/),
1212
simply run:

feClient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.5"
1+
__version__ = "0.0.6"
22
__doc__ = """
33
Python client for Fusion Explorer API v{}
44
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>

feClient/fexplorer-cli

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ from typing import Any
66
# Program
77
PUB_ENV_NAME = "FECLI_PUBKEY"
88
SEC_ENV_NAME = "FECLI_SECKEY"
9-
SEC_ENV_NAME = "FECLI_SECKEY"
109
CACHEPATH_ENV_NAME = "FECLI_CACHE_PATH"
1110
DISCACHE_ENV_NAME = "FECLI_CACHE_DISABLE"
1211
STORAGE_FILE = os.getenv(CACHEPATH_ENV_NAME, "{}/feclicache.json".format(tempfile.gettempdir()))

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@
1717
author_email = "ifa@fusionsolutions.io",
1818
url = "https://github.com/FusionSolutions/python-feclient",
1919
license = "GPL-3",
20-
# setup_requires=["setuptools>=25"],
21-
# install_requires=["setuptools>=25"],
2220
package_dir={"feClient": "feClient"},
2321
packages=["feClient"],
2422
long_description=open(os.path.join(pwd, "README.md")).read(),
2523
long_description_content_type="text/markdown",
2624
zip_safe=False,
2725
scripts=["feClient/fexplorer-cli"],
28-
python_requires=">=3.8.*",
26+
python_requires=">=3.5.0",
2927
classifiers=[ # https://pypi.org/pypi?%3Aaction=list_classifiers
3028
"Development Status :: 4 - Beta",
3129
"Topic :: Utilities",
3230
"Programming Language :: Python :: 3 :: Only",
31+
"Programming Language :: Python :: 3.5",
32+
"Programming Language :: Python :: 3.6",
33+
"Programming Language :: Python :: 3.7",
3334
"Programming Language :: Python :: 3.8",
3435
"Programming Language :: Python :: 3.9",
3536
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",

0 commit comments

Comments
 (0)