Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
68537e60
Commit
68537e60
authored
4 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
Remove python 2.7 and 3.5 support
parent
8c514743
No related branches found
No related tags found
2 merge requests
!5
Taken current version of master branch in the https://github.com/holgern/beem
,
!4
Original changes pushed to master at https://github.com/holgern/beem
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.travis.yml
+2
-6
2 additions, 6 deletions
.travis.yml
README.rst
+1
-1
1 addition, 1 deletion
README.rst
appveyor.yml
+1
-1
1 addition, 1 deletion
appveyor.yml
requirements-test.txt
+2
-1
2 additions, 1 deletion
requirements-test.txt
setup.py
+3
-3
3 additions, 3 deletions
setup.py
with
9 additions
and
12 deletions
.travis.yml
+
2
−
6
View file @
68537e60
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
README.rst
+
1
−
1
View file @
68537e60
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
1
−
1
View file @
68537e60
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
requirements-test.txt
+
2
−
1
View file @
68537e60
...
@@ -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
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
3
View file @
68537e60
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment