-
Notifications
You must be signed in to change notification settings - Fork 80
[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
Open
apalala
wants to merge
46
commits into
master
Choose a base branch
from
update_dependencies
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
9225f3a
[setup.py] remove 'pip' from requires, unsafe
apalala 05ed6c1
[dependencies] pip-compile --upgrade setup.py and tests/requirements.in
apalala 25a5446
[dependencies] pip compile --upgrade setup.py
apalala f4a9ffc
[dependencies] remove requirements.in as it duplicates setup.py
apalala 450b73d
[dependencies] enable TravisCI on branch
apalala 402dcf4
[cli][bug] fix incorrect parameter passed for `click.prompt(default=)`
apalala 878a967
[travisci] use Python 3.9 + apply to all branches
apalala 3dd95a7
[setup.py] unpin click
apalala 9342d08
[ci] add github pipeline/action for builds
apalala 4df40f0
[dependencies] pin click==7.1.2 for Python 2.7 support
apalala 8df9044
[travisci] restore active branches
apalala 81c3fc8
[github] install other Python versions in action
apalala d6577e5
[github] bugfix in actions
apalala 02489bf
[tox] drop py36
apalala 0f4558f
[tox] drop py27
apalala 8e316dd
[github] try to install other Python versions
apalala 02bc076
Bump version: 2.13.0 → 2.14.0
apalala f4f98ba
update from incorrect commit in master
apalala 109ee19
Merge branch 'master' into update_dependencies
apalala 6e8caa9
[tests][cli] skip tests involving `click.invoke(input=)`
apalala 616cdd7
[dependencies] unpin dependencies in setup.py
apalala 8c4b490
[setup.py] drop support for 2.7, 3.5, 3.6
apalala 911cd58
[versioning] revert version changes
apalala db8f39a
[ci] remove experimental Github Actions
apalala abf7150
[setup.py] revert version change + unpin requirements
apalala 7b83121
[versioning] restore version
apalala 015be38
[test] include py310
apalala 3213221
[requirements] update + force updated python-scrapinghub from branch
apalala 3811292
Bump version: 2.13.0 → 3.0.0
apalala 55e4131
[setup.py] patch for branch version of python-scrapinghub
apalala d99ed0f
[setup.py] revert latest change
apalala 227cc64
[setup.py] pin click to >=7.0
apalala b47afd0
[tox] test on py310
apalala fc441d4
Merge remote-tracking branch 'refs/remotes/origin/update_dependencies…
apalala c586b58
[test] clean up tox.ini
apalala b3f158a
[setup.py] fix syntax error
apalala cddc023
ignore PyCharm configuration dir .idea/
apalala cdeaef0
[test] refactor requirments files for library version consistency
apalala 3c98c78
[tests] resolve deprecation in pyyaml.yaml.load()
apalala fddef8e
[test] resolve self.assertRaisesRegex deprecation
apalala 99f5670
[utils] solve SafeconfigParser deprecation
apalala b28c03f
[requirements] use the branch version of python-scrapinghub
apalala 962ac7f
[make] requirements-test.txt depends on requirements-test.in
apalala e1482ac
[tests] disable test_can_deploy_an_egg_from_pypi()
apalala 22d0ad1
[requirements] force branch version of python-scrapinghub
apalala 90886f3
[tests] resolve deprecation warnings
apalala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -127,4 +127,7 @@ tags | |
| # Persistent undo | ||
| [._]*.un~ | ||
|
|
||
| # PyCharm | ||
| .idea/ | ||
|
|
||
| # End of https://www.gitignore.io/api/vim,python | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
|
|
||
| start: | ||
| echo "Hello World!" | ||
|
|
||
| requirements: requirements-test.txt | ||
|
|
||
| requirements-test.txt: requirements-test.in requirements.txt | ||
| pip-compile -qU requirements-test.in | ||
|
|
||
| requirements.txt: setup.py | ||
| pip-compile -qU setup.py | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| -r requirements.txt | ||
| python-dateutil | ||
| mock | ||
| pytest | ||
| pytest-cov | ||
| flake8 | ||
| pipenv | ||
|
|
||
| # latest python-scrapinghub | ||
| git+https://[email protected]/scrapinghub/python-scrapinghub.git@update_py310_minus_py27 | ||
|
|
||
| # CVE-2020-29651 | ||
| py>=1.10.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| # | ||
| # This file is autogenerated by pip-compile with python 3.9 | ||
| # To update, run: | ||
| # | ||
| # pip-compile requirements-test.in | ||
| # | ||
| attrs==21.2.0 | ||
| # via pytest | ||
| backports.entry-points-selectable==1.1.0 | ||
| # via virtualenv | ||
| certifi==2021.10.8 | ||
| # via | ||
| # -r requirements.txt | ||
| # pipenv | ||
| # requests | ||
| charset-normalizer==2.0.7 | ||
| # via | ||
| # -r requirements.txt | ||
| # requests | ||
| click==8.0.3 | ||
| # via -r requirements.txt | ||
| coverage[toml]==6.0.2 | ||
| # via pytest-cov | ||
| distlib==0.3.3 | ||
| # via virtualenv | ||
| docker==5.0.3 | ||
| # via -r requirements.txt | ||
| filelock==3.3.1 | ||
| # via virtualenv | ||
| flake8==4.0.1 | ||
| # via -r requirements-test.in | ||
| idna==3.3 | ||
| # via | ||
| # -r requirements.txt | ||
| # requests | ||
| iniconfig==1.1.1 | ||
| # via pytest | ||
| mccabe==0.6.1 | ||
| # via flake8 | ||
| mock==4.0.3 | ||
| # via -r requirements-test.in | ||
| msgpack==1.0.2 | ||
| # via scrapinghub | ||
| packaging==21.0 | ||
| # via pytest | ||
| pipenv==2021.5.29 | ||
| # via -r requirements-test.in | ||
| platformdirs==2.4.0 | ||
| # via virtualenv | ||
| pluggy==1.0.0 | ||
| # via pytest | ||
| py==1.10.0 | ||
| # via | ||
| # -r requirements-test.in | ||
| # pytest | ||
| pycodestyle==2.8.0 | ||
| # via flake8 | ||
| pyflakes==2.4.0 | ||
| # via flake8 | ||
| pyparsing==3.0.0 | ||
| # via packaging | ||
| pytest==6.2.5 | ||
| # via | ||
| # -r requirements-test.in | ||
| # pytest-cov | ||
| pytest-cov==3.0.0 | ||
| # via -r requirements-test.in | ||
| python-dateutil==2.8.2 | ||
| # via -r requirements-test.in | ||
| pyyaml==6.0 | ||
| # via -r requirements.txt | ||
| requests==2.26.0 | ||
| # via | ||
| # -r requirements.txt | ||
| # docker | ||
| # scrapinghub | ||
| retrying==1.3.3 | ||
| # via | ||
| # -r requirements.txt | ||
| # scrapinghub | ||
| git+https://[email protected]/scrapinghub/python-scrapinghub.git@update_py310_minus_py27 | ||
| # via | ||
| # -r requirements-test.in | ||
| # -r requirements.txt | ||
| six==1.16.0 | ||
| # via | ||
| # -r requirements.txt | ||
| # python-dateutil | ||
| # retrying | ||
| # scrapinghub | ||
| # virtualenv | ||
| toml==0.10.2 | ||
| # via | ||
| # -r requirements.txt | ||
| # pytest | ||
| tomli==1.2.1 | ||
| # via coverage | ||
| tqdm==4.62.3 | ||
| # via -r requirements.txt | ||
| urllib3==1.26.7 | ||
| # via | ||
| # -r requirements.txt | ||
| # requests | ||
| virtualenv==20.9.0 | ||
| # via pipenv | ||
| virtualenv-clone==0.5.7 | ||
| # via pipenv | ||
| websocket-client==1.2.1 | ||
| # via | ||
| # -r requirements.txt | ||
| # docker | ||
|
|
||
| # The following packages are considered to be unsafe in a requirements file: | ||
| # pip | ||
| # setuptools |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| # via shub (setup.py) | ||
| git+https://[email protected]/scrapinghub/python-scrapinghub.git@update_py310_minus_py27 | ||
| 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
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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', | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.