-
Notifications
You must be signed in to change notification settings - Fork 47
Transition to pure pyproject.toml for project metadata #351
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
Codecov Report
@@ Coverage Diff @@
## main #351 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 29 28 -1
Lines 1341 1335 -6
=========================================
- Hits 1341 1335 -6
|
docs/source/release_notes.rst
Outdated
@@ -4,6 +4,7 @@ Release Notes | |||
Future Release | |||
============== | |||
* Enhancements | |||
* Transition to pure pyproject.toml for project metadata (:pr:`351`) |
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.
Enhancement or change?
@@ -13,7 +13,7 @@ jobs: | |||
fail-fast: false | |||
matrix: | |||
os: [ubuntu-latest, macos-latest] | |||
python_version: ["3.8", "3.9", "3.10"] | |||
python_version: ["3.8", "3.9", "3.10", "3.11"] |
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.
If we are going to support 3.11, shouldn't we also run all our unit tests with 3.11, not just the install test?
pyproject.toml
Outdated
"scikit-learn >= 0.20.0, !=0.22", | ||
] | ||
complete = [ | ||
"featuretools[updater]", |
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.
featuretools -> compose
docs = [ | ||
"evalml >= 0.45.0" | ||
] | ||
dev = [ |
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.
Previously the dev requirements also included the test requirements. Should we also add compose[test]
in this section?
No description provided.