-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
poetry v1.3.0 #77
poetry v1.3.0 #77
Changes from 1 commit
7609c3e
56edea6
a21c81e
e0396e6
169bab5
d312cf1
fd34da2
59e2ce8
6110546
0c177e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ requirements: | |
- poetry-plugin-export >=1.2.0,<2.0.0 | ||
- backports.cached-property >=1.0.2,<2.0.0 # [py<38] | ||
- cachecontrol >=0.12.9,<0.13.0 | ||
|
||
# cachecontrol filecache extra | ||
- filelock >=3.8.0 | ||
|
||
|
@@ -56,6 +56,9 @@ requirements: | |
- xattr >=0.10.0,<0.11.0 # [darwin] | ||
xylar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- urllib3 >=1.26.0,<2.0.0 | ||
|
||
# `poetry` entry point fails without this: | ||
- lockfile >=0.9 | ||
Comment on lines
+62
to
+63
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I understand that this is necessary, but I'm confused how Poetry works when this isn't an explicit dependency. Do you understand where it's coming from? Maybe there is a missing dependency from There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I reported this upstream in python-poetry/poetry#7171. Let's see what they say. I also think it's a problem regardless of whether this should come from another dependency because it's an explicit dependency. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, explicit dependencies should definitely be included by the package using them. But it's probably also an implicit dependency which is missing somewhere on CF... I can try to have a look... |
||
|
||
test: | ||
requires: | ||
- pip | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the one I see no way around -- we can't be noarch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does installing xattr break non-osx?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, xattr doesn't exist for win:
https://github.com/conda-forge/xattr-feedstock/blob/main/recipe/meta.yaml#L16
And I would hesitate to override the upstream choices in general to too great a degree.