-
Notifications
You must be signed in to change notification settings - Fork 263
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
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
67d6969
feat(dev): Migrate project to uv
last-partizan 0a8cf01
chore: Enable cache
last-partizan 120f19f
chore: Fix argument
last-partizan 07b7626
pyproject build
last-partizan 938119e
chore: smallfixes
last-partizan c743598
docs update
last-partizan a69ce7c
chore: Fix old build
last-partizan f350542
fix: Use correct license
last-partizan 153a1e7
chore: Fix install
last-partizan 1410613
chore: Update authors
last-partizan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
commit f35054219004d786bfb6b6a557d3dc0b08ee47f3
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
requires-python = "<4,>=3.9" | ||
dependencies = [ | ||
"Django>=4.2", | ||
|
@@ -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" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@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?