Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Trying to fix Mac distributable #353
Trying to fix Mac distributable #353
Changes from all commits
8f9f9f7
f49184d
7005c4b
5ead011
0d346cf
53e62b2
e55b823
499dc92
074c2a6
e29e43e
d1be94a
18c363c
0760fc4
cd9e512
7f1d4d6
0a5d9d0
92e1f46
31ac2dc
9b84832
c3658e7
e3d9eff
97b1caa
97b8d8f
942edbd
ddcbc4b
82451bc
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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, I was wondering if the conda-forge installation pathway would resolve a lot of our challenges with this
Thanks for trying that out
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 an alternative to
pip install email_validator
which is used in the win/linux envs. I don't know which one is better, but they both seem to work. Do you have a preference? We should probably be consistent with the envs as much as we can.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.
I believe that conda-forge is more reliable when there are many nested (as in hidden imports) or non-Python (as in bindings) assets attached to the package
Also architecture specific releases - PyPI does a lot of that magically and you just cross your fingers but as you know, it's something you specifically setup in the feedstock (with or without certain amount of developer pains)
Though PyPI can host non-pure Python, in experience it tends to work best for pure Python code
So I'm fine with
pydantic
coming from conda-forge, yes. Also v2.x of Pydantic is partially written in Rust whereas v1.x is pure Python so setting up for conda-forge might be best hereThere 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.
Great points