Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit e93712c

Browse files
committed
Fix: For now, go back to using the deprecated --no-dev.
1 parent 3ce2774 commit e93712c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/docker_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ def repl(matchobj: re.Match):
11121112

11131113
# Run Poetry and associated tools.
11141114
def run_poetry(is_dev: bool):
1115-
no_dev_arg = "" if is_dev else " --only main"
1115+
no_dev_arg = "" if is_dev else " --no-dev"
11161116
xqt(
11171117
# Update dependencies. See `scripts/poetry_fix.py`. This must come before Poetry, since it will check for the existence of the project created by these commands. (Even calling ``poetry config`` will perform this check!)
11181118
f"{sys.executable} runestone_poetry_project/poetry_fix.py{no_dev_arg}",

0 commit comments

Comments
 (0)