Skip to content

Commit 190adca

Browse files
committed
Config: use_system_packages defaults to False in Config v2
1 parent 34ff065 commit 190adca

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

readthedocs/config/config.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -938,13 +938,9 @@ def validate_python(self):
938938
]
939939

940940
with self.catch_validation_error('python.system_packages'):
941-
system_packages = self.defaults.get(
942-
'use_system_packages',
943-
False,
944-
)
945941
system_packages = self.pop_config(
946942
'python.system_packages',
947-
system_packages,
943+
False,
948944
)
949945
python['use_system_site_packages'] = validate_bool(system_packages)
950946

0 commit comments

Comments
 (0)