Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conda_lock/pypi_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ def get_dependency(dep: lock_spec.Dependency) -> PoetryDependency:
vcs=dep.vcs,
source=dep.source,
rev=dep.rev,
extras=dep.extras,
)
elif isinstance(dep, lock_spec.PathDependency):
if dep.is_directory:
Expand Down
2 changes: 2 additions & 0 deletions conda_lock/src_parser/pyproject_toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ def parse_poetry_pyproject_toml(
dependencies.append(
VCSDependency(
name=name,
extras=extras,
markers=markers,
source=url,
manager=manager,
Expand Down Expand Up @@ -577,6 +578,7 @@ def parse_python_requirement(
source=url,
manager=manager,
category=category,
extras=extras,
vcs="git",
rev=rev,
markers=markers,
Expand Down
Loading