-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #890 from consideRatio/pr/only-upgrade-whats-uncon…
…ditionally-required Only upgrade jupyterhub in user env when upgrading tljh, ensure pip>=23.1.2 in user env
- Loading branch information
Showing
6 changed files
with
82 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
include tljh/systemd-units/* | ||
include tljh/*.tpl | ||
include tljh/requirements-base.txt | ||
include tljh/requirements-*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# When tljh.installer runs, the hub' environment as typically found in | ||
# /opt/tljh/hub, is upgraded to use these packages. | ||
# | ||
# When a new release is made, the lower bounds should be incremented to the | ||
# latest release to help us narrow the versions based on knowing what tljh | ||
# version is installed from inspecting this file. | ||
# | ||
# If a dependency is bumped to a new major version, we should make a major | ||
# version release of tljh. | ||
# | ||
jupyterhub>=4.0.0,<5 | ||
jupyterhub-systemdspawner>=0.17.0,<5 | ||
jupyterhub-firstuseauthenticator>=1.0.0,<2 | ||
jupyterhub-nativeauthenticator>=1.1.0,<2 | ||
jupyterhub-ldapauthenticator>=1.3.2,<2 | ||
jupyterhub-tmpauthenticator>=0.6.0,<0.7 | ||
oauthenticator>=15.1.0,<16 | ||
jupyterhub-idle-culler>=1.2.1,<2 | ||
git+https://github.com/yuvipanda/jupyterhub-configurator@317759e17c8e48de1b1352b836dac2a230536dba | ||
|
||
# pycurl is installed to improve reliability and performance for when JupyterHub | ||
# makes web requests. JupyterHub will use tornado's CurlAsyncHTTPClient when | ||
# making requests over tornado's SimpleHTTPClient automatically if pycurl is | ||
# installed. | ||
# | ||
# ref: https://www.tornadoweb.org/en/stable/httpclient.html#module-tornado.simple_httpclient | ||
# ref: https://github.com/jupyterhub/the-littlest-jupyterhub/issues/289 | ||
# | ||
pycurl>=7.45.2,<8 |
8 changes: 4 additions & 4 deletions
8
tljh/requirements-base.txt → tljh/requirements-user-env-extras.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters