Skip to content
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

Updated ORT allowed licenses with Unicode-3.0 #2773

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ allow = [
"BSD-2-Clause",
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please trigger some workflow which run rust lint.

"BSD-3-Clause",
"Unicode-DFS-2016",
"Unicode-3.0",
"ISC",
"OpenSSL"
]
Expand Down
6 changes: 4 additions & 2 deletions utils/get_licenses_from_ort.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"""

APPROVED_LICENSES = [
"Unicode-DFS-2016",
"(Apache-2.0 OR MIT) AND Unicode-DFS-2016",
"(Apache-2.0 OR MIT) AND Unicode-3.0",
"0BSD OR Apache-2.0 OR MIT",
"Apache-2.0",
"Apache-2.0 AND (Apache-2.0 OR BSD-2-Clause)",
Expand All @@ -31,9 +31,11 @@
"BSD-3-Clause OR Apache-2.0",
"ISC",
"MIT",
"Zlib",
"MIT OR Unlicense",
"PSF-2.0",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
]

SCRIPT_PATH = os.path.dirname(os.path.realpath(__file__))
Expand Down
Loading