-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from eduNEXT/eric/oep-18
[BD-6] Compliance with OEP-18
- Loading branch information
Showing
18 changed files
with
172 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ dist | |
build | ||
.pytest_cache | ||
.coverage | ||
venv/ |
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,3 @@ | ||
include LICENSE | ||
include README.rst | ||
include requirements/base.in |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
--- | ||
oeps: | ||
oep-7: false | ||
oep-18: false | ||
oep-18: true | ||
|
||
tags: | ||
- library |
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,7 @@ | ||
# Core requirements for using this package | ||
-c constraints.txt | ||
|
||
pyparsing | ||
numpy | ||
scipy | ||
six |
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,10 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
numpy==1.18.3 # via -r requirements/base.in, scipy | ||
pyparsing==2.4.7 # via -r requirements/base.in | ||
scipy==1.4.1 # via -r requirements/base.in | ||
six==1.14.0 # via -r requirements/base.in |
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,9 @@ | ||
# Version constraints for pip-installation. | ||
# | ||
# This file doesn't install any packages. It specifies version constraints | ||
# that will be applied if a package is needed. | ||
# | ||
# When pinning something here, please provide an explanation of why. Ideally, | ||
# link to other information that will help people in the future to remove the | ||
# pin when possible. Writing an issue against the offending project and | ||
# linking to it here is good. |
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,4 @@ | ||
# Dependencies to run compile tools | ||
-c constraints.txt | ||
|
||
pip-tools # Contains pip-compile, used to generate pip requirements files |
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,12 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
click==7.1.2 # via pip-tools | ||
pip-tools==5.1.1 # via -r requirements/pip_tools.in | ||
six==1.14.0 # via pip-tools | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# pip |
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 @@ | ||
# Requirements for test runs | ||
-c constraints.txt | ||
|
||
-r base.txt # Core dependencies for the cookiecutter | ||
|
||
coverage | ||
pycodestyle | ||
pylint |
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,20 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
astroid==2.4.0 # via pylint | ||
coverage==5.1 # via -r requirements/test.in | ||
isort==4.3.21 # via pylint | ||
lazy-object-proxy==1.4.3 # via astroid | ||
mccabe==0.6.1 # via pylint | ||
numpy==1.18.3 # via -r requirements/base.txt, scipy | ||
pycodestyle==2.5.0 # via -r requirements/test.in | ||
pylint==2.5.0 # via -r requirements/test.in | ||
pyparsing==2.4.7 # via -r requirements/base.txt | ||
scipy==1.4.1 # via -r requirements/base.txt | ||
six==1.14.0 # via -r requirements/base.txt, astroid | ||
toml==0.10.0 # via pylint | ||
typed-ast==1.4.1 # via astroid | ||
wrapt==1.12.1 # via astroid |
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,4 @@ | ||
# Used for tests | ||
-c constraints.txt | ||
|
||
tox |
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,20 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
appdirs==1.4.3 # via virtualenv | ||
distlib==0.3.0 # via virtualenv | ||
filelock==3.0.12 # via tox, virtualenv | ||
importlib-metadata==1.6.0 # via importlib-resources, pluggy, tox, virtualenv | ||
importlib-resources==1.5.0 # via virtualenv | ||
packaging==20.3 # via tox | ||
pluggy==0.13.1 # via tox | ||
py==1.8.1 # via tox | ||
pyparsing==2.4.7 # via packaging | ||
six==1.14.0 # via packaging, tox, virtualenv | ||
toml==0.10.0 # via tox | ||
tox==3.14.6 # via -r requirements/tox.in | ||
virtualenv==20.0.18 # via tox | ||
zipp==1.2.0 # via importlib-metadata, importlib-resources |
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,6 @@ | ||
# Requirements for running tests in Travis | ||
-c constraints.txt | ||
|
||
-r tox.txt | ||
|
||
coveralls |
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,28 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# make upgrade | ||
# | ||
appdirs==1.4.3 # via -r requirements/tox.txt, virtualenv | ||
certifi==2020.4.5.1 # via requests | ||
chardet==3.0.4 # via requests | ||
coverage==5.1 # via coveralls | ||
coveralls==2.0.0 # via -r requirements/travis.in | ||
distlib==0.3.0 # via -r requirements/tox.txt, virtualenv | ||
docopt==0.6.2 # via coveralls | ||
filelock==3.0.12 # via -r requirements/tox.txt, tox, virtualenv | ||
idna==2.9 # via requests | ||
importlib-metadata==1.6.0 # via -r requirements/tox.txt, importlib-resources, pluggy, tox, virtualenv | ||
importlib-resources==1.5.0 # via -r requirements/tox.txt, virtualenv | ||
packaging==20.3 # via -r requirements/tox.txt, tox | ||
pluggy==0.13.1 # via -r requirements/tox.txt, tox | ||
py==1.8.1 # via -r requirements/tox.txt, tox | ||
pyparsing==2.4.7 # via -r requirements/tox.txt, packaging | ||
requests==2.23.0 # via coveralls | ||
six==1.14.0 # via -r requirements/tox.txt, packaging, tox, virtualenv | ||
toml==0.10.0 # via -r requirements/tox.txt, tox | ||
tox==3.14.6 # via -r requirements/tox.txt | ||
urllib3==1.25.9 # via requests | ||
virtualenv==20.0.18 # via -r requirements/tox.txt, tox | ||
zipp==1.2.0 # via -r requirements/tox.txt, importlib-metadata, importlib-resources |
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