-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #15
- Loading branch information
Gaetan Semet
committed
Aug 1, 2019
1 parent
5fc1e82
commit 1148187
Showing
9 changed files
with
69 additions
and
51 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -9,6 +9,7 @@ python: | |
- 3.6 | ||
|
||
install: | ||
- rm -f .python-version | ||
- make ensure-pip-ci | ||
- make dev-ci | ||
|
||
|
This file contains 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 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 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 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,22 @@ | ||
[[source]] | ||
|
||
url = "https://pypi.python.org/simple" | ||
verify_ssl = true | ||
|
||
|
||
[dev-packages] | ||
|
||
"flake8" = ">=3.4" | ||
pycodestyle = ">=2.0" | ||
pyflakes = "<1.6.0,>=1.5.0" | ||
pylint = ">=1.7" | ||
yapf = ">=0.18" | ||
cryptography = ">=1.4" | ||
pyyaml = ">=3.11" | ||
tox = "*" | ||
|
||
|
||
[packages] | ||
pbr = ">=3.0" | ||
pipenv = "*" | ||
requests = {version = "==2.9.1", extras = ["security"]} |
8 changes: 8 additions & 0 deletions
8
pipenv_to_requirements/vectors/Pipfile.extras.requirements-dev.txt
This file contains 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,8 @@ | ||
cryptography>=1.4 | ||
flake8>=3.4 | ||
pycodestyle>=2.0 | ||
pyflakes<1.6.0,>=1.5.0 | ||
pylint>=1.7 | ||
pyyaml>=3.11 | ||
tox | ||
yapf>=0.18 |
3 changes: 3 additions & 0 deletions
3
pipenv_to_requirements/vectors/Pipfile.extras.requirements.txt
This file contains 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,3 @@ | ||
pbr>=3.0 | ||
pipenv | ||
requests[security]==2.9.1 |
This file contains 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,17 +1,5 @@ | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
from __future__ import unicode_literals | ||
# -*- coding: utf-8 -*- | ||
|
||
import setuptools | ||
|
||
# In python < 2.7.4, a lazy loading of package `pbr` will break | ||
# setuptools if some other modules registered functions in `atexit`. | ||
# solution from: http://bugs.python.org/issue15881#msg170215 | ||
try: | ||
import multiprocessing # noqa | ||
except ImportError: | ||
pass | ||
|
||
setuptools.setup(setup_requires=['pbr'], | ||
pbr=True) | ||
setuptools.setup(setup_requires=['pbr'], pbr=True) |