File tree 3 files changed +23
-17
lines changed
3 files changed +23
-17
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,12 @@ n-docs-diff: ## number of docs/ files changed since branch from master
68
68
n-other-diff : # # number of files outside docs/ changed since branch from master
69
69
@git diff --name-only $(DIFF_RANGE ) -- ' :!docs/' | wc -l | awk ' {print $$1}'
70
70
71
+ run/% : # # run a bash in interactive mode in a stack
72
+ docker run -it --rm $(OWNER ) /$(notdir $@ ) $(SHELL )
73
+
74
+ run-sudo/% : # # run a bash in interactive mode as root in a stack
75
+ docker run -it --rm -u root $(OWNER ) /$(notdir $@ ) $(SHELL )
76
+
71
77
tx-en : # # rebuild en locale strings and push to master (req: GH_TOKEN)
72
78
@git config --global user.email " travis@travis-ci.org"
73
79
@git config --global user.name " Travis CI"
@@ -87,4 +93,4 @@ test/%: ## run tests against a stack
87
93
@TEST_IMAGE=" $( OWNER) /$( notdir $@ ) " pytest test
88
94
89
95
test/base-notebook : # # test supported options in the base notebook
90
- @TEST_IMAGE=" $( OWNER) /$( notdir $@ ) " pytest test base-notebook/test
96
+ @TEST_IMAGE=" $( OWNER) /$( notdir $@ ) " pytest test base-notebook/test
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ USER $NB_UID
23
23
24
24
# R packages
25
25
RUN conda install --quiet --yes \
26
- 'r-base=3.6.1 ' \
26
+ 'r-base=3.6.2 ' \
27
27
'r-ggplot2=3.2*' \
28
- 'r-irkernel=1.0 *' \
29
- 'r-rcurl=1.95 *' \
30
- 'r-sparklyr=1.0 *' \
28
+ 'r-irkernel=1.1 *' \
29
+ 'r-rcurl=1.98 *' \
30
+ 'r-sparklyr=1.1 *' \
31
31
&& \
32
32
conda clean --all -f -y && \
33
33
fix-permissions $CONDA_DIR && \
Original file line number Diff line number Diff line change @@ -45,26 +45,26 @@ USER $NB_UID
45
45
46
46
# R packages including IRKernel which gets installed globally.
47
47
RUN conda install --quiet --yes \
48
- 'r-base=3.6.1 ' \
48
+ 'r-base=3.6.2 ' \
49
49
'r-caret=6.0*' \
50
50
'r-crayon=1.3*' \
51
- 'r-devtools=2.1 *' \
52
- 'r-forecast=8.7 *' \
53
- 'r-hexbin=1.27 *' \
54
- 'r-htmltools=0.3 *' \
55
- 'r-htmlwidgets=1.3 *' \
56
- 'r-irkernel=1.0 *' \
51
+ 'r-devtools=2.2 *' \
52
+ 'r-forecast=8.10 *' \
53
+ 'r-hexbin=1.28 *' \
54
+ 'r-htmltools=0.4 *' \
55
+ 'r-htmlwidgets=1.5 *' \
56
+ 'r-irkernel=1.1 *' \
57
57
'r-nycflights13=1.0*' \
58
58
'r-plyr=1.8*' \
59
59
'r-randomforest=4.6*' \
60
- 'r-rcurl=1.95 *' \
60
+ 'r-rcurl=1.98 *' \
61
61
'r-reshape2=1.4*' \
62
- 'r-rmarkdown=1.14 *' \
62
+ 'r-rmarkdown=2.1 *' \
63
63
'r-rsqlite=2.1*' \
64
64
'r-shiny=1.3*' \
65
- 'r-sparklyr=1.0 *' \
66
- 'r-tidyverse=1.2 *' \
67
- 'rpy2=2.9 *' \
65
+ 'r-sparklyr=1.1 *' \
66
+ 'r-tidyverse=1.3 *' \
67
+ 'rpy2=3.1 *' \
68
68
&& \
69
69
conda clean --all -f -y && \
70
70
fix-permissions $CONDA_DIR && \
You can’t perform that action at this time.
0 commit comments