Skip to content

feat(dev): Migrate project to uv #783

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

Merged
merged 10 commits into from
Mar 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Use correct license
Closest we have to 'New BSD' is 'BSD 3-Clause "New" or "Revised" License'

Refs https://spdx.org/licenses/
  • Loading branch information
last-partizan committed Mar 22, 2025
commit f35054219004d786bfb6b6a557d3dc0b08ee47f3
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [{ name = "Peter Eschler", email = "[email protected]" }]
maintainers = [
{ name = "Sergiy Tereshchenko", email = "[email protected]" },
]
license = {text = "New BSD"}
license = "BSD-3-Clause"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peschler @deschler Hey folks, I'm doing migration from poetry to uv here, and also updating build backend configuration.

And we had "New BSD" as license name in old config. But, this is not something exactly from this list https://spdx.org/licenses/

That's probably BSD 3-Clause "New" or "Revised" License, aka BSD-3-Clause. Right?

requires-python = "<4,>=3.9"
dependencies = [
"Django>=4.2",
Expand All @@ -27,7 +27,6 @@ classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
]
[project.urls]
"Homepage" = "https://github.com/deschler/django-modeltranslation"
Expand Down