-
Notifications
You must be signed in to change notification settings - Fork 79
[dependencies] update 3rd party dependencies #407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 36 commits
9225f3a
05ed6c1
25a5446
f4a9ffc
450b73d
402dcf4
878a967
3dd95a7
9342d08
4df40f0
8df9044
81c3fc8
d6577e5
02489bf
0f4558f
8e316dd
02bc076
f4f98ba
109ee19
6e8caa9
616cdd7
8c4b490
911cd58
db8f39a
abf7150
7b83121
015be38
3213221
3811292
55e4131
d99ed0f
227cc64
b47afd0
fc441d4
c586b58
b3f158a
cddc023
cdeaef0
3c98c78
fddef8e
99f5670
b28c03f
962ac7f
e1482ac
22d0ad1
90886f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,43 @@ | ||
| # | ||
| # This file is autogenerated by pip-compile | ||
| # This file is autogenerated by pip-compile with python 3.9 | ||
| # To update, run: | ||
| # | ||
| # pip-compile | ||
| # pip-compile setup.py | ||
| # | ||
| certifi==2020.6.20 | ||
| certifi==2021.10.8 | ||
| # via requests | ||
| chardet==3.0.4 | ||
| charset-normalizer==2.0.7 | ||
| # via requests | ||
| click==7.0 | ||
| # via -r requirements.in | ||
| docker==4.2.2 | ||
| # via -r requirements.in | ||
| idna==2.10 | ||
| click==8.0.3 | ||
| # via shub (setup.py) | ||
| docker==5.0.3 | ||
| # via shub (setup.py) | ||
| idna==3.3 | ||
| # via requests | ||
| pyyaml==5.4 | ||
| # via -r requirements.in | ||
| requests==2.24.0 | ||
| pyyaml==6.0 | ||
| # via shub (setup.py) | ||
| requests==2.26.0 | ||
| # via | ||
| # -r requirements.in | ||
| # docker | ||
| # scrapinghub | ||
| # shub (setup.py) | ||
| retrying==1.3.3 | ||
| # via | ||
| # -r requirements.in | ||
| # scrapinghub | ||
| scrapinghub==2.3.1 | ||
| # via -r requirements.in | ||
| six==1.15.0 | ||
| # shub (setup.py) | ||
| # scrapinghub==2.3.1 | ||
| git+https://[email protected]/scrapinghub/python-scrapinghub.git@update_py310_minus_py27 | ||
| # via shub (setup.py) | ||
| six==1.16.0 | ||
| # via | ||
| # -r requirements.in | ||
| # docker | ||
| # retrying | ||
| # scrapinghub | ||
| toml==0.10.1 | ||
| # via -r requirements.in | ||
| tqdm==4.55.1 | ||
| # via -r requirements.in | ||
| urllib3==1.25.9 | ||
| # shub (setup.py) | ||
| toml==0.10.2 | ||
| # via shub (setup.py) | ||
| tqdm==4.62.3 | ||
| # via shub (setup.py) | ||
| urllib3==1.26.7 | ||
| # via requests | ||
| websocket-client==0.57.0 | ||
| websocket-client==1.2.1 | ||
| # via docker | ||
apalala marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
|
|
||
| setup( | ||
| name='shub', | ||
| version='2.13.0', | ||
| version='3.0.0', | ||
| packages=find_packages(exclude=('tests', 'tests.*')), | ||
| url=about['DOCS_LINK'], | ||
| description='Scrapinghub Command Line Client', | ||
|
|
@@ -29,15 +29,14 @@ | |
| include_package_data=True, | ||
| zip_safe=False, | ||
| install_requires=[ | ||
| 'click==7.0', | ||
| 'click>=7.0', | ||
| 'docker', | ||
| 'pip', | ||
| 'PyYAML', | ||
| 'pyyaml', | ||
| 'retrying', | ||
| 'requests', | ||
| 'scrapinghub>=2.3.1', | ||
| 'six>=1.7.0', | ||
| 'tqdm==4.55.1', | ||
| 'tqdm', | ||
|
Comment on lines
-40
to
+39
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably keep some limit, assuming we do not support just any version. |
||
| 'toml', | ||
| ], | ||
| classifiers=[ | ||
|
|
@@ -46,12 +45,10 @@ | |
| 'Natural Language :: English', | ||
| 'License :: OSI Approved :: BSD License', | ||
| 'Programming Language :: Python', | ||
| 'Programming Language :: Python :: 2.7', | ||
| 'Programming Language :: Python :: 3.5', | ||
| 'Programming Language :: Python :: 3.6', | ||
apalala marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 'Programming Language :: Python :: 3.7', | ||
| 'Programming Language :: Python :: 3.8', | ||
| 'Programming Language :: Python :: 3.9', | ||
| 'Programming Language :: Python :: 3.10', | ||
| 'Operating System :: OS Independent', | ||
| 'Environment :: Console', | ||
| 'Topic :: Internet :: WWW/HTTP', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| __version__ = '2.13.0' | ||
| __version__ = '3.0.0' | ||
|
|
||
|
|
||
| # Links to documentation to use over the project sources | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,67 @@ | ||
| # | ||
| # This file is autogenerated by pip-compile | ||
| # This file is autogenerated by pip-compile with python 3.9 | ||
| # To update, run: | ||
| # | ||
| # pip-compile | ||
| # pip-compile requirements.in | ||
| # | ||
| appdirs==1.4.4 # via virtualenv | ||
| attrs==19.3.0 # via pytest | ||
| coverage==5.1 # via pytest-cov | ||
| distlib==0.3.0 # via virtualenv | ||
| filelock==3.0.12 # via virtualenv | ||
| flake8==3.8.3 # via -r requirements.in | ||
| mccabe==0.6.1 # via flake8 | ||
| mock==3.0.5 # via -r requirements.in | ||
| more-itertools==5.0.0 # via pytest | ||
| packaging==20.4 # via pytest | ||
| pipenv==2020.6.2 # via -r requirements.in | ||
| pluggy==0.13.1 # via pytest | ||
| py==1.10.0 # via pytest | ||
| pycodestyle==2.6.0 # via flake8 | ||
| pyflakes==2.2.0 # via flake8 | ||
| pyparsing==2.4.7 # via packaging | ||
| pytest-cov==2.9.0 # via -r requirements.in | ||
| pytest==5.4.3 # via -r requirements.in, pytest-cov | ||
| python-dateutil==2.8.1 # via -r requirements.in | ||
| virtualenv-clone==0.5.4 # via pipenv | ||
| virtualenv==20.0.21 # via pipenv | ||
| wcwidth==0.2.4 # via pytest | ||
| attrs==21.2.0 | ||
| # via pytest | ||
| backports.entry-points-selectable==1.1.0 | ||
| # via virtualenv | ||
| certifi==2021.5.30 | ||
| # via pipenv | ||
| coverage==5.5 | ||
| # via pytest-cov | ||
| distlib==0.3.2 | ||
| # via virtualenv | ||
| filelock==3.0.12 | ||
| # via virtualenv | ||
| flake8==3.9.2 | ||
| # via -r requirements.in | ||
| iniconfig==1.1.1 | ||
| # via pytest | ||
| mccabe==0.6.1 | ||
| # via flake8 | ||
| mock==4.0.3 | ||
| # via -r requirements.in | ||
| packaging==21.0 | ||
| # via pytest | ||
| pipenv==2021.5.29 | ||
| # via -r requirements.in | ||
| platformdirs==2.3.0 | ||
| # via virtualenv | ||
| pluggy==1.0.0 | ||
| # via pytest | ||
| py==1.10.0 | ||
| # via | ||
| # -r requirements.in | ||
| # pytest | ||
| pycodestyle==2.7.0 | ||
| # via flake8 | ||
| pyflakes==2.3.1 | ||
| # via flake8 | ||
| pyparsing==2.4.7 | ||
| # via packaging | ||
| pytest==6.2.5 | ||
| # via | ||
| # -r requirements.in | ||
| # pytest-cov | ||
| pytest-cov==2.12.1 | ||
| # via -r requirements.in | ||
| python-dateutil==2.8.2 | ||
| # via -r requirements.in | ||
| six==1.16.0 | ||
| # via | ||
| # python-dateutil | ||
| # virtualenv | ||
| toml==0.10.2 | ||
| # via | ||
| # pytest | ||
| # pytest-cov | ||
| virtualenv==20.7.2 | ||
| # via pipenv | ||
| virtualenv-clone==0.5.7 | ||
| # via pipenv | ||
|
|
||
| # The following packages are considered to be unsafe in a requirements file: | ||
| # pip | ||
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -505,6 +505,7 @@ def get_project_dir(): | |
| os.path.join(basepath, 'a', 'b')) | ||
|
|
||
|
|
||
| @unittest.skip('broken by changes in `click.invoke(input=)`') | ||
apalala marked this conversation as resolved.
Show resolved
Hide resolved
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Then we should either address this in code or limit the upper version of
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No. This test is complicated yet unimportant, so not enough reason to downgrade Also, there should be only minor changes on this release. I'll leave this comment open to remind us to search or post an issue against |
||
| class OnboardingWizardTestCase(unittest.TestCase): | ||
|
|
||
| def setUp(self): | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.