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
dfc90807
Commit
dfc90807
authored
1 year ago
by
Krzysztof Mochocki
Browse files
Options
Downloads
Patches
Plain Diff
Set fixed versions of packages in setup.py
parent
5d0582bc
No related branches found
Branches containing commit
No related tags found
1 merge request
!15
Set fixed versions of packages in setup.py
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
requirements-test.txt
+0
-31
0 additions, 31 deletions
requirements-test.txt
setup.py
+33
-14
33 additions, 14 deletions
setup.py
tox.ini
+6
-8
6 additions, 8 deletions
tox.ini
with
39 additions
and
53 deletions
requirements-test.txt
deleted
100644 → 0
+
0
−
31
View file @
5d0582bc
pip
setuptools
wheel
future==0.18.2
ecdsa==0.16.1
requests==2.27.1
websocket-client==0.58.0
pytz==2021.1
pycryptodomex==3.10.1
scrypt==0.8.18
cryptography==3.4.7
ruamel.yaml
mock==4.0.3
appdirs==1.4.4
Click==7.1.2
click_shell>=2.0
prettytable
pycodestyle==2.7.0
pyflakes==2.3.1
pylibscrypt==2.0.0
six==1.15.0
pytest
pytest-mock
pytest-cov
coverage
parameterized
tox
codacy-coverage
virtualenv
diff_match_patch
asn1crypto
This diff is collapsed.
Click to expand it.
setup.py
+
33
−
14
View file @
dfc90807
...
...
@@ -18,22 +18,40 @@ except LookupError:
VERSION
=
'
0.26.0
'
tests_require
=
[
'
mock >= 2.0.0
'
,
'
pytest
'
,
'
pytest-mock
'
,
'
parameterized
'
]
tests_require
=
[
"
mock == 4.0.3
"
,
"
pytest == 7.2.2
"
,
"
pytest-mock == 3.12.0
"
,
"
parameterized == 0.9.0
"
,
"
setuptools == 69.1.1
"
,
"
wheel == 0.42.0
"
,
"
future == 0.18.2
"
,
"
cryptography == 3.4.7
"
,
"
pycodestyle == 2.7.0
"
,
"
pyflakes == 2.3.1
"
,
"
pylibscrypt == 2.0.0
"
,
"
six == 1.15.0
"
,
"
pytest-cov == 4.1.0
"
,
"
coverage == 7.4.3
"
,
"
tox == 4.13.0
"
,
"
codacy-coverage == 1.3.11
"
,
"
virtualenv == 20.25.1
"
,
]
requires
=
[
"
ecdsa
"
,
"
requests
"
,
"
websocket-client
"
,
"
appdirs
"
,
"
scrypt
"
,
"
pycryptodomex
"
,
"
pytz
"
,
"
Click
"
,
"
click_shell
"
,
"
prettytable
"
,
"
ruamel.yaml
"
,
"
diff_match_patch
"
,
"
asn1crypto
"
"
ecdsa
== 0.16.1
"
,
"
requests
== 2.27.1
"
,
"
websocket-client
== 0.58.0
"
,
"
appdirs
== 1.4.4
"
,
"
scrypt
== 0.8.18
"
,
"
pycryptodomex
== 3.10.1
"
,
"
pytz
== 2021.1
"
,
"
Click
== 8.0.0
"
,
"
click_shell
== 2.1
"
,
"
prettytable
== 3.8.0
"
,
"
ruamel.yaml
== 0.18.6
"
,
"
diff_match_patch
== 20230430
"
,
"
asn1crypto
== 1.5.1
"
]
...
...
@@ -105,5 +123,6 @@ if __name__ == '__main__':
},
setup_requires
=
[
'
pytest-runner
'
],
tests_require
=
tests_require
,
extras_require
=
{
"
tests
"
:
tests_require
},
include_package_data
=
True
,
)
This diff is collapsed.
Click to expand it.
tox.ini
+
6
−
8
View file @
dfc90807
...
...
@@ -3,8 +3,7 @@ envlist = py{27,35,36,37,38,39}
skip_missing_interpreters
=
true
[testenv]
deps
=
-rrequirements-test.txt
extras
=
tests
commands
=
coverage
run
--parallel-mode
-m
pytest
{posargs}
coverage
combine
...
...
@@ -28,8 +27,7 @@ commands =
coverage
xml
[testenv:py36]
deps
=
-rrequirements-test.txt
extras
=
tests
commands
=
coverage
run
--parallel-mode
-m
pytest
{posargs}
coverage
combine
...
...
@@ -120,20 +118,20 @@ basepython=
python
changedir
=
docs
deps
=
-rdocs/requirements.txt
sphinx
extras
=
tests
deps
=
sphinx
sphinx-click
commands
=
sphinx-build
-b
html
./
./html
[testenv:upload_coverage]
deps
=
deps
=
coverage
codacy-coverage
passenv
=
CODACY_PROJECT_TOKEN
commands
=
python-codacy-coverage
-r
coverage.xml
# Flake8 Configuration
[flake8]
# Ignore some flake8-docstrings errors
...
...
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