mirror of
https://github.com/readthedocs/sphinx_rtd_theme.git
synced 2025-02-25 18:55:21 -06:00
Eager upgrade of all dependencies in docker development environment (#1350)
* Do an eager upgrade of all dependencies in docker development environment * Adds a comment about installation of deps and upgrade strategy
This commit is contained in:
parent
3265b4cd61
commit
8142cd1a16
@ -1,8 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Update latest Python dependencies in case they have changed
|
# Update latest Python dependencies in case they have changed
|
||||||
|
# Notice that we are using the 'eager' strategy
|
||||||
|
# This should only be relevant to development environments where
|
||||||
|
# the theme is being used. For purposes of "production" or
|
||||||
|
# building the sdist/wheel, installing dependencies should not
|
||||||
|
# affect the outcome.
|
||||||
cd /project-readonly
|
cd /project-readonly
|
||||||
pip install --upgrade -e ".[dev]"
|
pip install --upgrade --upgrade-strategy eager -e ".[dev]"
|
||||||
|
|
||||||
# This helps a potential permission issue, but might be removed
|
# This helps a potential permission issue, but might be removed
|
||||||
# pending some more investigation of docker host file system
|
# pending some more investigation of docker host file system
|
||||||
|
Loading…
Reference in New Issue
Block a user