We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec61b9 commit 1a8404fCopy full SHA for 1a8404f
pydeps2env/environment.py
@@ -294,8 +294,6 @@ def _get_conda_dependencies(
294
and r.name not in remove
295
}
296
297
- print(conda_reqs)
298
-
299
for req_key in conda_reqs.keys():
300
if conda_reqs[req_key].name in pypi_to_conda_mapping.keys():
301
conda_reqs[req_key].name = pypi_to_conda_mapping[
test/test_environment.py
@@ -40,7 +40,6 @@ def test_init(
40
)
41
42
pip_txt = env._get_pip_dependencies(include_build_system=True)
43
- print(pip_txt)
44
# include extras specifier in pip format
45
assert "setuptools-scm[toml]" in pip_txt
46
0 commit comments