Skip to content

Commit

Permalink
Add package version specify & Deprecate py36
Browse files Browse the repository at this point in the history
  • Loading branch information
kriii committed Aug 29, 2023
1 parent bbd3ea2 commit c13f570
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
typing-extensions
pycryptodome
coincurve
aiohttp[speedups]
jsonrpcclient
mnemonic
bip32
typing-extensions==4.7.1
pycryptodome==3.18.0
coincurve==18.0.0
aiohttp[speedups]==3.8.5
jsonrpcclient==4.0.3
mnemonic==0.20
bip32==3.4
snapshottest
sphinx-rtd-theme
readthedocs-sphinx-ext
18 changes: 8 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,27 @@
long_description = (this_directory / "README.md").read_text()

requirements = [
"typing-extensions",
"pycryptodome",
"coincurve",
"aiohttp[speedups]",
"jsonrpcclient",
"mnemonic",
"bip32",
"snapshottest",
"typing-extensions==4.7.1",
"pycryptodome==3.18.0",
"coincurve==18.0.0",
"aiohttp[speedups]==3.8.5",
"jsonrpcclient==4.0.3",
"mnemonic==0.20",
"bip32==3.4",
]

test_requirements = []

setup(
author="AIN Dev Team",
author_email="[email protected]",
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310
envlist = py37,py38,py39,py310
skipsdist = True

[testenv]
Expand Down

0 comments on commit c13f570

Please sign in to comment.