-
Notifications
You must be signed in to change notification settings - Fork 30
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
maint: add pyproject to allow installing from empty environment #61
Conversation
@steven-murray thanks for the change! I think we also want to move from Travis to GitHub Actions for the CI on this repo. I can set that up as part of this PR. |
Codecov Report
@@ Coverage Diff @@
## master #61 +/- ##
=========================================
Coverage ? 47.87%
=========================================
Files ? 17
Lines ? 2258
Branches ? 0
=========================================
Hits ? 1081
Misses ? 1177
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
As a part of this PR, I've moved the CI builds from Travis to GitHub Actions, moved the coverage reporting from Coveralls to CodeCov, and migrated the test suite from As part of the testing, I have removed the builds on python2.7, and added testing for python3.7, 3.8, and 3.9. I have not explicitly broken compatibility with python2, but I don't think we need to regularly test backwards compatibility any longer now that it has reached end-of-life. In addition to these changes, I've been more explicit about numpy datatypes, in keeping with the recent deprecation warnings introduced in v1.20. This should hopefully future-proof us a bit. |
Nice updates, @plaplant :-) Looks ready to go! |
This just adds a simple
pyproject.toml
that makes it possible to install this package into an env that doesn't already havenumpy
installed.