-
Notifications
You must be signed in to change notification settings - Fork 14
Declare project and pytest configuration in pyproject.toml #80
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
Conversation
Uses PEP 518 and PEP 621. Drops support for running tests via 'python setup.py'
Codecov Report
@@ Coverage Diff @@
## master #80 +/- ##
=======================================
Coverage 84.83% 84.83%
=======================================
Files 1 1
Lines 310 310
=======================================
Hits 263 263
Misses 47 47 Help us with your feedback. Take ten seconds to tell us how you rate us. |
@EpicWink I believe it would be possible to do the main part of this provided that you leave a stup setup.py file around https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/?highlight=660#editable-installation even without setuptools supporting pep660. How do you think about that |
I agree to @jenshnielsen, we should still keep a |
Sounds good, I'll get to it tomorrow and test |
This reverts commit 7385cec.
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 a lot @EpicWink!
Uses PEP 518 and PEP 621. Drops support for Python 3.6 and running tests via
python setup.py
.setup.py-less editable installs are blocked by pypa/setuptools#3082 (likely setuptools v64), so a stub setup.py remains.