Skip to content
Snippets Groups Projects
Commit 68537e60 authored by Holger's avatar Holger
Browse files

Remove python 2.7 and 3.5 support

parent 8c514743
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
...@@ -21,16 +21,12 @@ matrix: ...@@ -21,16 +21,12 @@ matrix:
# python: 3.6 # python: 3.6
# env: # env:
# - TOXENV=readme # - TOXENV=readme
- os: linux
python: 2.7
env:
- TOXENV=short
- os: linux - os: linux
python: 3.7 python: 3.7
env: env:
- TOXENV=short - TOXENV=short
- os: linux - os: linux
python: 3.5 python: 3.8
env: env:
- TOXENV=short - TOXENV=short
- os: linux - os: linux
...@@ -58,7 +54,7 @@ before_install: ...@@ -58,7 +54,7 @@ before_install:
- pip install --upgrade wheel - pip install --upgrade wheel
# Set numpy version first, other packages link against it # Set numpy version first, other packages link against it
- pip install six nose coverage codecov pytest pytest-cov coveralls codacy-coverage parameterized secp256k1prp cryptography scrypt - pip install six nose coverage codecov pytest pytest-cov coveralls codacy-coverage parameterized secp256k1prp cryptography scrypt
- pip install pycryptodomex pyyaml appdirs pylibscrypt tox diff_match_patch asn1 - pip install pycryptodomex pyyaml appdirs pylibscrypt tox diff_match_patch asn1 enum34
- pip install ecdsa requests future websocket-client pytz six Click events prettytable click_shell - pip install ecdsa requests future websocket-client pytz six Click events prettytable click_shell
script: script:
......
...@@ -73,7 +73,7 @@ About beem ...@@ -73,7 +73,7 @@ About beem
Installation Installation
============ ============
The minimal working python version is 2.7.x. or 3.5.x The minimal working python version is 3.6.x
beem can be installed parallel to python-steem. beem can be installed parallel to python-steem.
......
...@@ -52,7 +52,7 @@ install: ...@@ -52,7 +52,7 @@ install:
- cmd: conda install --yes conda-build setuptools pip parameterized cryptography - cmd: conda install --yes conda-build setuptools pip parameterized cryptography
- cmd: conda install --yes pycryptodomex pyyaml pytest pytest-mock coverage mock appdirs pylibscrypt pywin32 - cmd: conda install --yes pycryptodomex pyyaml pytest pytest-mock coverage mock appdirs pylibscrypt pywin32
- cmd: pip install scrypt -U - cmd: pip install scrypt -U
- cmd: conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable pyinstaller click-shell asn1 - cmd: conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable pyinstaller click-shell asn1 enum34
build_script: build_script:
......
...@@ -30,4 +30,5 @@ codacy-coverage ...@@ -30,4 +30,5 @@ codacy-coverage
virtualenv virtualenv
codecov codecov
diff_match_patch diff_match_patch
asn1 asn1
\ No newline at end of file enum34
\ No newline at end of file
...@@ -36,7 +36,8 @@ requires = [ ...@@ -36,7 +36,8 @@ requires = [
"prettytable", "prettytable",
"pyyaml", "pyyaml",
"diff_match_patch", "diff_match_patch",
"asn1" "asn1",
"enum34"
] ]
...@@ -89,11 +90,10 @@ if __name__ == '__main__': ...@@ -89,11 +90,10 @@ if __name__ == '__main__':
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry', 'Intended Audience :: Financial and Insurance Industry',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment