Skip to content

Commit

Permalink
Change noxfile.py setuptools pin from ==66 to <=66 (#1071)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasha10 committed Apr 14, 2023
1 parent 97c0a47 commit 003e226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def deps(
) -> None:
session.install(
"--upgrade",
"setuptools==66", # pinned due to DeprecationWarning, see https://github.com/omry/omegaconf/issues/1068
"setuptools<=66", # pinned due to DeprecationWarning, see https://github.com/omry/omegaconf/issues/1068
"pip",
)
extra_flags = ["-e"] if editable_install else []
Expand Down

0 comments on commit 003e226

Please sign in to comment.