Skip to content

Commit

Permalink
Update requierements.
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Dec 30, 2017
1 parent 1ec96a3 commit b08600d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 63 deletions.
11 changes: 2 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Medikit 0.4.5 on 2017-12-27.
# Generated by Medikit 0.4.5 on 2017-12-30.
# All changes will be overriden.

PACKAGE ?= bonobo_docker
Expand All @@ -13,14 +13,10 @@ PIP_INSTALL_OPTIONS ?=
VERSION ?= $(shell git describe 2>/dev/null || git rev-parse --short HEAD)
PYTEST ?= $(PYTHON_DIRNAME)/pytest
PYTEST_OPTIONS ?= --capture=no --cov=$(PACKAGE) --cov-report html
SPHINX_BUILD ?= $(PYTHON_DIRNAME)/sphinx-build
SPHINX_OPTIONS ?=
SPHINX_SOURCEDIR ?= docs
SPHINX_BUILDDIR ?= $(SPHINX_SOURCEDIR)/_build
YAPF ?= $(PYTHON) -m yapf
YAPF_OPTIONS ?= -rip

.PHONY: $(SPHINX_SOURCEDIR) clean format install install-dev test update update-requirements
.PHONY: clean format install install-dev test update update-requirements

# Installs the local project dependencies.
install:
Expand Down Expand Up @@ -51,9 +47,6 @@ update-requirements:
test: install-dev
$(PYTEST) $(PYTEST_OPTIONS) tests

$(SPHINX_SOURCEDIR): install-dev
$(SPHINX_BUILD) -b html -D latex_paper_size=a4 $(SPHINX_OPTIONS) $(SPHINX_SOURCEDIR) $(SPHINX_BUILDDIR)/html

format: install-dev
$(YAPF) $(YAPF_OPTIONS) .
$(YAPF) $(YAPF_OPTIONS) Projectfile
1 change: 0 additions & 1 deletion Projectfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ from medikit import listen, require

pytest = require('pytest')
python = require('python')
sphinx = require('sphinx')
yapf = require('yapf')

python.setup(
Expand Down
40 changes: 0 additions & 40 deletions docs/changelog.rst

This file was deleted.

12 changes: 2 additions & 10 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
-e .[dev]
alabaster==0.7.10
appdirs==1.4.3
attrs==17.3.0
babel==2.5.1
attrs==17.4.0
bonobo==0.6.0a4
certifi==2017.11.5
chardet==3.0.4
colorama==0.3.9
coverage==4.4.2
docutils==0.14
fs==2.0.17
graphviz==0.8.1
graphviz==0.8.2
idna==2.6
imagesize==0.7.1
jinja2==2.10
markupsafe==1.0
mondrian==0.6.1
Expand All @@ -21,17 +17,13 @@ pbr==3.1.1
pluggy==0.6.0
psutil==5.4.2
py==1.5.2
pygments==2.2.0
pyparsing==2.2.0
pytest-cov==2.5.1
pytest==3.3.1
python-slugify==1.2.4
pytz==2017.3
requests==2.18.4
six==1.11.0
snowballstemmer==1.2.1
sphinx==1.6.5
sphinxcontrib-websupport==1.0.1
stevedore==1.28.0
unidecode==0.4.21
urllib3==1.22
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ colorama==0.3.9
docker-pycreds==0.2.1
docker==2.7.0
fs==2.0.17
graphviz==0.8.1
graphviz==0.8.2
idna==2.6
jinja2==2.10
markupsafe==1.0
Expand All @@ -24,5 +24,5 @@ six==1.11.0
stevedore==1.28.0
unidecode==0.4.21
urllib3==1.22
websocket-client==0.45.0
websocket-client==0.46.0
whistle==1.0.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def execfile(fname, globs, locs=None):
extras_require={
'dev': [
'bonobo (~= 0.6.0a4)', 'coverage (>= 4.4, < 5.0)', 'pytest (>= 3.1, < 4.0)', 'pytest-cov (>= 2.5, < 3.0)',
'sphinx (>= 1.6, < 2.0)', 'yapf'
'yapf'
]
},
entry_points={'bonobo.commands': ['runc = bonobo_docker.commands.runc:RuncCommand']},
Expand Down

0 comments on commit b08600d

Please sign in to comment.