-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix dependency installation by conversion from setup.cfg to pyproject.toml #70
base: master
Are you sure you want to change the base?
Conversation
pbr=True, | ||
version='{{VERSION_PLACEHOLDER}}' | ||
) | ||
setup(setup_requires=["pbr"]) |
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 had to change the invocation here, because if any arguments other than setup_requires
was specified, PBR attempts to load the non-existing setup.cfg
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.
Thanks for pointing this out. I'm not sure if this changes how we were publishing to pypi, but I'll figure that out after merging.
build-backend = "pbr.build" | ||
|
||
[project] | ||
requires-python = ">=3.8" |
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 think we should say 3.10, Jupyter is using this at the moment, and that is typically our source of truth for is python-chi working.
Moved this back to draft, due to the following issues:
|
No description provided.