You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/config_files.rst
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,15 +29,15 @@ can be found on this page (and to the right).
29
29
that lets you install any kind of package,
30
30
including Python, R, and C/C++ packages.
31
31
``repo2docker`` does not use your ``environment.yml`` to create and activate a new conda environment.
32
-
Rather, it updates a base conda environment `defined here <https://github.com/jupyterhub/repo2docker/blob/master/repo2docker/buildpacks/conda/environment.yml>`_ with the packages listed in your ``environment.yml``.
32
+
Rather, it updates a base conda environment `defined here <https://github.com/jupyterhub/repo2docker/blob/HEAD/repo2docker/buildpacks/conda/environment.yml>`_ with the packages listed in your ``environment.yml``.
33
33
This means that the environment will always have the same default name, not the name
34
34
specified in your ``environment.yml``.
35
35
36
36
.. note::
37
37
38
38
You can install files from pip in your ``environment.yml`` as well.
39
39
For example, see the `binder-examples environment.yml
To set the date of the snapshot add a runtime.txt_.
123
-
For an example ``install.R`` file, visit our `example install.R file <https://github.com/binder-examples/r/blob/master/install.R>`_.
123
+
For an example ``install.R`` file, visit our `example install.R file <https://github.com/binder-examples/r/blob/HEAD/install.R>`_.
124
124
125
125
126
126
.. _apt.txt:
@@ -132,7 +132,7 @@ A list of Debian packages that should be installed. The base image used is usual
132
132
version of Ubuntu.
133
133
134
134
We use ``apt.txt``, for example, to install LaTeX in our
135
-
`example apt.txt for LaTeX <https://github.com/binder-examples/latex/blob/master/apt.txt>`_.
135
+
`example apt.txt for LaTeX <https://github.com/binder-examples/latex/blob/HEAD/apt.txt>`_.
136
136
137
137
138
138
.. _DESCRIPTION:
@@ -162,7 +162,7 @@ You should include ``set -e`` or the equivalent at the start of the script to av
162
162
163
163
An example use-case of ``postBuild`` file is JupyterLab's demo on mybinder.org.
164
164
It uses a ``postBuild`` file in a folder called ``binder`` to `prepare
165
-
their demo for binder <https://github.com/jupyterlab/jupyterlab-demo/blob/master/binder/postBuild>`_.
165
+
their demo for binder <https://github.com/jupyterlab/jupyterlab-demo/blob/HEAD/binder/postBuild>`_.
166
166
167
167
168
168
.. _start:
@@ -204,12 +204,12 @@ For these cases, we have a special file, ``runtime.txt``.
204
204
``runtime.txt`` will be ignored).
205
205
206
206
Have ``python-x.y`` in ``runtime.txt`` to run the repository with Python version x.y.
207
-
See our `Python2 example repository <https://github.com/binder-examples/python2_runtime/blob/master/runtime.txt>`_.
207
+
See our `Python2 example repository <https://github.com/binder-examples/python2_runtime/blob/HEAD/runtime.txt>`_.
208
208
209
209
Have ``r-<RVERSION>-<YYYY>-<MM>-<DD>`` in ``runtime.txt`` to run the repository with R version RVERSION and libraries from a YYYY-MM-DD snapshot of `MRAN <https://mran.microsoft.com/documents/rro/reproducibility>`_.
210
210
RVERSION can be set to 3.4, 3.5, 3.6, or to patch releases for the 3.5 and 3.6 series.
211
211
If you do not specify a version, the latest release will be used (currently R 3.6).
212
-
See our `R example repository <https://github.com/binder-examples/r/blob/master/runtime.txt>`_.
212
+
See our `R example repository <https://github.com/binder-examples/r/blob/HEAD/runtime.txt>`_.
Copy file name to clipboardExpand all lines: docs/source/contributing/contributing.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,8 +64,8 @@ Read the [next section](#guidelines-to-getting-a-pull-request-merged) for guidel
64
64
6. Wait for a community member to merge your changes.
65
65
Remember that **someone else must merge your pull request**.
66
66
That goes for new contributors and long term maintainers alike.
67
-
Because `master` is continuously deployed to mybinder.org it is essential
68
-
that `master` is always in a deployable state.
67
+
Because `main` is continuously deployed to mybinder.org it is essential
68
+
that `main` is always in a deployable state.
69
69
7. (optional) Deploy a new version of repo2docker to mybinder.org by [following these steps](http://mybinder-sre.readthedocs.io/en/latest/deployment/how.html)
Copy file name to clipboardExpand all lines: docs/source/contributing/tasks.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,8 +52,8 @@ To update one of the dependencies shared across all `repo2docker` builds, you
52
52
must follow these steps (with more detailed information in the sections below):
53
53
54
54
1. Make sure you have [Docker](https://www.docker.com/) running on your computer
55
-
2. Bump the version numbers of the dependencies you want to update in the `conda` environment ([link](https://github.com/jupyterhub/repo2docker/blob/master/CONTRIBUTING.md#conda-dependencies))
56
-
3. Make a pull request with your changes ([link](https://github.com/jupyterhub/repo2docker/blob/master/CONTRIBUTING.md#make-a-pull-request))
55
+
2. Bump the version numbers of the dependencies you want to update in the `conda` environment ([link](https://github.com/jupyterhub/repo2docker/blob/HEAD/CONTRIBUTING.md#conda-dependencies))
56
+
3. Make a pull request with your changes ([link](https://github.com/jupyterhub/repo2docker/blob/HEAD/CONTRIBUTING.md#make-a-pull-request))
57
57
58
58
See the subsections below for more detailed instructions.
59
59
@@ -115,7 +115,7 @@ test to prevent the bug from coming back/the feature breaking in the future.
115
115
116
116
## Creating a Release
117
117
118
-
We make a release of whatever is on `master` every month. We use "calendar versioning".
118
+
We make a release of whatever is on `main` every month. We use "calendar versioning".
119
119
Monthly releases give users a predictable pattern for when releases are going to
120
120
happen and prevents locking up improvements for fixes for long periods of time.
0 commit comments