File tree Expand file tree Collapse file tree 4 files changed +22
-11
lines changed Expand file tree Collapse file tree 4 files changed +22
-11
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/pre-commit/pre-commit-hooks
3
- rev : v3.1 .0
3
+ rev : v3.2 .0
4
4
hooks :
5
5
- id : check-added-large-files
6
6
args : ['--maxkb=100']
@@ -10,20 +10,20 @@ repos:
10
10
- id : debug-statements
11
11
- id : end-of-file-fixer
12
12
- repo : https://github.com/asottile/pyupgrade
13
- rev : v2.7.1
13
+ rev : v2.7.2
14
14
hooks :
15
15
- id : pyupgrade
16
16
args : [--py36-plus]
17
17
- repo : https://github.com/asottile/reorder_python_imports
18
- rev : v2.3.0
18
+ rev : v2.3.5
19
19
hooks :
20
20
- id : reorder-python-imports
21
21
- repo : https://github.com/psf/black
22
- rev : 19.10b0
22
+ rev : 20.8b1
23
23
hooks :
24
24
- id : black
25
25
- repo : https://github.com/asottile/blacken-docs
26
- rev : v1.7 .0
26
+ rev : v1.8 .0
27
27
hooks :
28
28
- id : blacken-docs
29
29
additional_dependencies : [black]
@@ -48,9 +48,14 @@ repos:
48
48
Pygments,
49
49
]
50
50
- repo : https://github.com/PyCQA/doc8
51
- rev : 0.8.1rc3
51
+ rev : 0.9.0a1
52
52
hooks :
53
53
- id : doc8
54
+ - repo : https://github.com/econchick/interrogate
55
+ rev : 1.3.1
56
+ hooks :
57
+ - id : interrogate
58
+ args : [-v, --fail-under=40, src, tests]
54
59
- repo : https://github.com/codespell-project/codespell
55
60
rev : v1.17.1
56
61
hooks :
Original file line number Diff line number Diff line change @@ -6,7 +6,13 @@ chronological order. Releases follow `semantic versioning <https://semver.org/>`
6
6
all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask-r >`_.
7
7
8
8
9
- 0.0.2 - 2020-xx-xx
9
+ 0.0.3 - 2020-xx-xx
10
+ ------------------
11
+
12
+ :gh: `2 ` fixes marker description and adds some changes to the readme.
13
+
14
+
15
+ 0.0.2 - 2020-08-14
10
16
------------------
11
17
12
18
- :gh: `1 ` includes some minor changes like fixing the missing version variable.
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ Installation
26
26
27
27
Install the plugin with
28
28
29
- .. code-block :: bash
29
+ .. code-block :: console
30
30
31
31
$ conda config --add channels conda-forge --add channels pytask
32
32
$ conda install pytask-r
33
33
34
34
You also need to have R installed and ``Rscript `` on your command line. To test
35
35
whether it is installed, type the following on the command line
36
36
37
- .. code-block :: bash
37
+ .. code-block :: console
38
38
39
39
$ Rscript --help
40
40
@@ -43,7 +43,7 @@ choosing either the normal R or Microsoft R Open (MRO). The command is one of th
43
43
following commands. (See `here <https://docs.anaconda.com/anaconda/user-guide/tasks/
44
44
using-r-language> `_ for further explanation on Anaconda, R, and MRO.)
45
45
46
- .. code-block :: bash
46
+ .. code-block :: console
47
47
48
48
$ conda install -c r r-base # For normal R.
49
49
$ conda install -c r mro-base # For MRO.
Original file line number Diff line number Diff line change 3
3
4
4
@hookimpl
5
5
def pytask_parse_config (config ):
6
- config ["markers" ]["r" ] = "r: Tasks which are executed with Rscript."
6
+ config ["markers" ]["r" ] = "Tasks which are executed with Rscript."
You can’t perform that action at this time.
0 commit comments