Wykres commitów

588 Commity (eaad02ca34e0d6a93ba436250328040ad454bbc7)

Autor SHA1 Wiadomość Data
Tim Head 7bbfe982b6
Merge pull request #152 from GladysNalvarte/pip-e
Suggest editable install when installed from source
2017-11-29 16:24:19 +01:00
Gladys Nalvarte b592a098c0 Suggest editable install when installed from source 2017-11-29 10:50:47 +01:00
yuvipanda 76d3ae423d Bump notebook version to 5.2.2
Brings in https://github.com/jupyter/notebook/pull/2959 to fix
https://github.com/jupyterhub/binderhub/issues/211
2017-11-28 17:48:40 -08:00
Tim Head c0fc0fe74a
Merge pull request #144 from minrk/git-credential-env
add git-credential-env
2017-11-23 13:45:16 +01:00
Min RK ed96e22743 separate RUN for git-credential-env 2017-11-22 14:56:09 +01:00
Chris Holdgraf 6d13a4eb3e
Merge pull request #147 from yuvipanda/set-e
Make all bash verify scripts fail on error
2017-11-21 17:39:28 -08:00
yuvipanda 603efee588 Make all bash verify scripts fail on error
Bash scripts by default continue on executing even if any
command errors. That's not the behavior we want for our scripts,
so let's explicitly get them to fail if:

1. Any command exits with non 0 exit code
2. An undefined variable is referenced
2017-11-21 14:53:15 -08:00
Chris Holdgraf 97658e0446
Merge pull request #145 from oschuett/master
Add tests for binder/apt.txt and binder/postBuild
2017-11-17 13:50:55 -08:00
Ole Schuett 795e359ad1 Add tests for binder/apt.txt and binder/postBuild 2017-11-17 22:17:41 +01:00
Min RK 504aeb7300 add git-credential-env
and configure git to use it by default

`git-credential-env` only echoes the $GIT_CREDENTIAL_ENV environment variable
when git asks for https credentials.

with this, setting GIT_CREDENTIAL_ENV="username=name\npassword=xxx" sets the credentials
that will be used.

e.g.

    docker run -e GIT_CREDENTIAL_ENV="username=name\npassword=xxx" jupyter/repo2docker https://github.com/private/repo
2017-11-17 16:05:46 +01:00
Yuvi Panda 0d3becd0b4
Merge pull request #137 from darwindarak/master
RFC: Ignore "julia" in REQUIRE file when precompiling
2017-11-16 16:56:22 -08:00
Tim Head c9821a3c7d
Merge pull request #140 from oschuett/master
Fix binder/apt.txt detection
2017-11-12 22:41:01 +01:00
Ole Schuett 691174518f Fix binder/apt.txt detection 2017-11-12 11:46:18 +01:00
Darwin Darakananda 1d42113368 Ignore "julia" in REQUIRE file when precompiling 2017-11-10 20:37:55 -08:00
Yuvi Panda 88f7b34fed
Merge pull request #118 from betatim/tempfile
[MRG] Use stdlib tempfile module
2017-11-09 16:14:09 -06:00
Tim Head 5ff228deca Fix argument definition 2017-11-09 16:41:00 +01:00
Chris Holdgraf 093184b36a
Merge pull request #132 from yuvipanda/jh
Fully remove jupyterhub references
2017-11-01 17:49:53 -07:00
yuvipanda e3647e6e44 Don't test for jupyterhub being present in legacy dockerfiles
We don't auto install JupyterHub anymore
2017-11-01 17:23:39 -07:00
Tim Head 498d30a3f5 Remove leftover reference to juypterhub 2017-11-01 17:23:24 -07:00
Chris Holdgraf 3459b7705c
Merge pull request #131 from jupyter/revert-120-max-clone-depth
Revert "[MRG] Add limit on git clone depth"
2017-11-01 16:28:20 -07:00
Yuvi Panda a7b1519b4d
Revert "[MRG] Add limit on git clone depth" 2017-11-01 16:27:26 -07:00
Chris Holdgraf 4f6501ea6f
Merge pull request #130 from jupyter/revert-128-fix-clone-depth
Revert "Add handling for no ref being provided"
2017-11-01 16:26:59 -07:00
Yuvi Panda cad9deb7d0
Revert "Add handling for no ref being provided" 2017-11-01 16:23:29 -07:00
Yuvi Panda d3286eb4ed
Merge pull request #128 from betatim/fix-clone-depth
Add handling for no ref being provided
2017-11-01 14:19:04 -07:00
Tim Head cb1b1442f2 Add handling for no ref being provided
We do not need to checkout a specific ref if none is provided. Added a
test to check the behaviour.
2017-11-01 21:56:13 +01:00
Tim Head 5242bd8339 Switch to using context manager for cleanup 2017-11-01 21:15:27 +01:00
Yuvi Panda 7a007d7f6b
Merge pull request #120 from betatim/max-clone-depth
[MRG] Add limit on git clone depth
2017-10-31 12:38:20 -07:00
yuvipanda 22aee654ce Don't test for jupyterhub being present in legacy dockerfiles
We don't auto install JupyterHub anymore
2017-10-31 12:21:03 -07:00
Tim Head 5b48e60505 Switch to exceptions instead of exit() and add a new test 2017-10-31 11:09:46 +01:00
Yuvi Panda 907ec06361
Merge pull request #122 from betatim/one_more_rm
[MRG] Remove intermediate containers for successful and failed builds
2017-10-30 14:58:54 -07:00
Tim Head 095671589b Remove leftover reference to juypterhub 2017-10-26 21:16:41 +02:00
Tim Head 531db84b45 Add test for unshallowing repositories 2017-10-26 21:14:41 +02:00
Tim Head c19d037036 Add check for ref and deep clone
If the ref does not exist in the shallow clone, create a full clone of
the repository and retry.
2017-10-26 21:14:41 +02:00
Tim Head 8caeffdbbd Add limit on git clone depth
Only checkout last 50 commits from a remote repository. This helps speed
up the cloning for large repositories.
2017-10-26 21:14:41 +02:00
Chris Holdgraf d4518285a1 Merge pull request #117 from yuvipanda/faq
Add a basic FAQ doc + 1 entry
2017-10-25 09:42:08 -07:00
Min RK fc4aeda557 Merge pull request #111 from willingc/remove-jhub
Remove jupyterhub from default installs
2017-10-25 15:35:14 +02:00
Tim Head bbc407c1cb Merge pull request #121 from yuvipanda/repo2docker
Add 'repo2docker' as a script alias
2017-10-25 09:53:43 +02:00
Tim Head 9cdbc58e5b Remove intermediate containers for successful and failed builds 2017-10-25 08:06:08 +02:00
yuvipanda 0ff424ca7e Add 'repo2docker' as a script alias
jupyter-repo2docker is a mouthful
2017-10-24 16:09:40 -07:00
yuvipanda 29f22f5636 Doc fixes per @betatim 2017-10-24 16:09:09 -07:00
Tim Head 67510722d4 Merge pull request #101 from yuvipanda/forcerm
Remove intermediate containers in failed builds
2017-10-24 23:50:53 +02:00
Tim Head f6ce444450 Use stdlib tempfile module
The tempfile module can take care of finding a good temporary directory
for us on paltforms where `/tmp` does not exist.
2017-10-24 23:25:34 +02:00
yuvipanda be545bd0ad Add a basic FAQ doc + 1 entry
We get lots of questions that can be answered here!
2017-10-24 14:02:54 -07:00
Matthias Bussonnier c718a90ee1 Merge pull request #105 from yuvipanda/design
Attempt to add some info about design principles
2017-10-24 11:36:40 -07:00
yuvipanda 7e8e13baa0 Add design doc to toc 2017-10-24 10:35:45 -07:00
yuvipanda 1f0cbe0511 Move to docs/source/design.md 2017-10-24 10:32:32 -07:00
Tim Head ca144b0ed8 Merge pull request #107 from choldgraf/docstring
reorganize command line arguments
2017-10-24 06:20:17 +02:00
Matthias Bussonnier d13980d422 Incorporate someof willinc feedback 2017-10-23 16:42:37 -07:00
Carol Willing bc92e8614f Merge pull request #112 from choldgraf/logo
adding jupyter logos
2017-10-23 15:58:55 -07:00
Chris Holdgraf 355a05f5f8 adding jupyter logos 2017-10-23 15:47:51 -07:00