-
Notifications
You must be signed in to change notification settings - Fork 250
migrate setup.py to pyproject.toml #417
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
base: master
Are you sure you want to change the base?
Conversation
76311d4
to
fbc8ae2
Compare
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 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.
"Programming Language :: Python :: 3.11", | |
"Programming Language :: Python :: 3.11", | |
"Programming Language :: Python :: 3.12", |
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", |
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.
"Framework :: Django :: 4.2", | |
"Framework :: Django :: 4.2", | |
"Framework :: Django :: 5.0", |
Rebase? Add new versions of Django and Python? |
Sure. I'll try to do it quick. Please assign the PR to me if you can (it helps me remembering them). |
@asherf Can we please move forward with this modernization? |
declarative config is encouraged by setuptools as it avoid running arbitrary code and reduces boilerplate.
EDIT: I did not notice the project already had a pyproject.toml with a
build-system
section, let's move everything to pyproject.toml 🎉 .