-
Notifications
You must be signed in to change notification settings - Fork 302
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
Transition from using setup.py to pyproject.toml to specify project metadata #338
Conversation
pyproject.toml
Outdated
"pandas>=1.1.3;python_version<'3.10'", | ||
"pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'", | ||
"pandas>=1.5.0;python_version>='3.11'", | ||
"scikit-learn>=1.1.3,<2;python_version>='3.10'", |
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.
here we should add appropriate bounds for all the python versions we support
"scikit-learn>=1.1.3,<2;python_version>='3.10'", | |
"scikit-learn>=0.24,<2;python_version<'3.10'", | |
"scikit-learn>=1.1.0,<2;python_version>='3.10' and python_version<'3.11'", | |
"scikit-learn>=1.1.3,<2;python_version>='3.11'", |
20a11de
to
5aac2e1
Compare
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.
LGTM!
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
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.
One thing I forgot, you'll need this:
[tool.setuptools.dynamic] | |
version = {attr = 'ctgan.__version__'} |
CU-86azg1hg1
Resolve #333