-
Notifications
You must be signed in to change notification settings - Fork 568
Introduced pipfile #376
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
Introduced pipfile #376
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,5 @@ __pycache__ | |
# Virtual Environments | ||
venv* | ||
.tox | ||
|
||
Pipfile.lock |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
pre-commit = "~=1.13" | ||
|
||
[packages] | ||
selenium = "~=3.141" | ||
autopep8 = "~=1.4" | ||
httpretty = "~=0.9" | ||
pytest = "~=4.0" | ||
pytest-cov = "~=2.6" | ||
tox = "~=3.6" | ||
tox-travis = "~=0.11" | ||
|
||
# TODO Update to the latest ver when py2 support dropped | ||
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. thanks 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. I mean you could do something like 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. Yes, but at least for pylint/astroid/isort, point is #362 (comment) . And as for other packages, same package versions are available for both py2 and py3. |
||
pylint = "~=1.9" | ||
astroid = "~=1.6" | ||
isort = "~=4.3" |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ envlist = | |
|
||
[testenv] | ||
deps = | ||
-r ci-requirements.txt | ||
pipenv | ||
commands = | ||
pipenv lock --clear | ||
pipenv install | ||
./ci.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can also explicitly point out which python versions are supported here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean
[requires]
section?If so, I removed from below description.
If no and you have example, it would be helpful.
https://docs.pipenv.org/en/latest/basics/#general-recommendations-version-control
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, sad but true: pypa/pipenv#1050