Skip to content

Commit

Permalink
Fix small syntax error in example pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt authored Aug 19, 2024
1 parent 94b1d06 commit e588ed6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ dependencies = [
{ conda = "cuda-toolkit =11.8:linux64" } # Use platform selectors by appending `:linux64`
]
local_dependencies = [
"../other-project-using-unidep", # include other projects that use unidep
"../common-requirements.yaml" # include other requirements.yaml files
"../project-not-managed-by-unidep" # 🚨 Skips its dependencies!
"../other-project-using-unidep", # include other projects that use unidep
"../common-requirements.yaml", # include other requirements.yaml files
"../project-not-managed-by-unidep" # 🚨 Skips its dependencies!
]
optional_dependencies = {
test = ["pytest"],
Expand Down

0 comments on commit e588ed6

Please sign in to comment.