-
-
Notifications
You must be signed in to change notification settings - Fork 107
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
PR: Replace now deprecated distutils with setuptools #199
Conversation
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 @kumattau for the help! Left some questions/suggestions 👍
I checked setuptools minimum version.
On a related topic, "setup.py install" has been deprecated in setuptools 58.3.0 (05 Nov 2021). pypa/setuptools@fc5c308#diff-d9f946e5d366d670898f9cfaa80a8f892853686b6533a07c40ba9e9d4ee0e862 I think it is better that we think separately "setup.py install" in another ticket if needs |
Awesome @kumattau ! Lets drop the
Sure, please open a new issue to give a follow-up to that 👍 |
faf1110
to
72fcfbf
Compare
Specifically, do I need to add setuptools to environment.yml? diff --git a/requirements/environment.yml b/requirements/environment.yml
index 978b804..ab4ed8a 100644
--- a/requirements/environment.yml
+++ b/requirements/environment.yml
@@ -8,3 +8,4 @@ dependencies:
- pytest-cov
- pytest-qt
- qtpy
+- setuptools I think this is not required because conda installs setuptools as default.
|
Thinking about that maybe is not necessary since we don't really need a minimum version that supports the |
This PR is preparing for removal of distutils in the future.
ref #194 (comment)