Skip to content

Commit 15ea7b9

Browse files
committed
Release: 0.8.1
1 parent 549b856 commit 15ea7b9

4 files changed

Lines changed: 19 additions & 2 deletions

File tree

Projectfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# mondrian (see github.com/python-medikit)
22

3-
from medikit import listen, require
3+
from medikit import listen, require, pipeline
4+
from medikit.steps.exec import System
45

56
require("pytest")
67
require("sphinx")
@@ -33,5 +34,8 @@ with require("make") as make:
3334
doc='Runs the "release" pipeline.',
3435
)
3536

37+
with pipeline("release") as release:
38+
release.add(System('pre-commit run || true'), before="System('git add -p .', True)")
39+
3640

3741
# vim: ft=python:

mondrian/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.0"
1+
__version__ = "0.8.1"

requirements-dev.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,44 @@
11
-e .[dev]
22
-r requirements.txt
33
alabaster==0.7.12
4+
appdirs==1.4.4
45
atomicwrites==1.4.0
56
attrs==20.3.0
67
babel==2.9.0
78
certifi==2020.11.8
9+
cfgv==3.2.0
810
chardet==3.0.4
911
coverage==4.5.4
12+
distlib==0.3.1
1013
docutils==0.16
14+
filelock==3.0.12
15+
identify==1.5.10
1116
idna==2.10
1217
imagesize==1.2.0
18+
importlib-metadata==3.1.0
1319
isort==5.6.4
1420
jinja2==2.11.2
1521
markupsafe==1.1.1
1622
more-itertools==8.6.0
23+
nodeenv==1.5.0
1724
packaging==20.4
1825
pluggy==0.13.1
26+
pre-commit==2.9.2
1927
py==1.9.0
2028
pygments==2.7.2
2129
pyparsing==2.4.7
2230
pytest-cov==2.10.1
2331
pytest==4.6.11
2432
pytz==2020.4
33+
pyyaml==5.3.1
2534
requests==2.25.0
2635
six==1.15.0
2736
snowballstemmer==2.0.0
2837
sphinx==1.8.5
2938
sphinxcontrib-serializinghtml==1.1.4
3039
sphinxcontrib-websupport==1.2.4
40+
toml==0.10.2
3141
urllib3==1.26.2
42+
virtualenv==20.2.1
3243
wcwidth==0.2.5
44+
zipp==3.4.0

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def execfile(fname, globs, locs=None):
6161
"dev": [
6262
"coverage ~= 4.5",
6363
"isort",
64+
"pre-commit ~= 2.9.2",
6465
"pytest ~= 4.6",
6566
"pytest-cov ~= 2.7",
6667
"sphinx ~= 1.7",

0 commit comments

Comments
 (0)