diff --git a/deps_licenses/licenses_mac_user.txt b/deps_licenses/licenses_mac_user.txt deleted file mode 100644 index 5456ff5b5..000000000 --- a/deps_licenses/licenses_mac_user.txt +++ /dev/null @@ -1,18 +0,0 @@ - Name Version License - Pillow 8.4.0 Historical Permission Notice and Disclaimer (HPND) - cycler 0.11.0 BSD License - fonttools 4.28.3 MIT License - kiwisolver 1.3.2 BSD License - loguru 0.5.3 MIT License - matplotlib 3.5.1 Python Software Foundation License - networkx 2.6.3 BSD License - numpy 1.21.4 BSD License - packaging 21.3 Apache Software License; BSD License - pygraphviz 1.7 BSD License - pyparsing 3.0.6 MIT License - python-dateutil 2.8.2 Apache Software License; BSD License - setuptools-scm 6.3.2 MIT License - six 1.16.0 MIT License - tomli 1.2.3 MIT License - torch 1.10.0 BSD License - typing-extensions 4.0.1 Python Software Foundation License diff --git a/deps_licenses/licenses_linux_user.txt b/docs/linux.dependency.licenses.txt similarity index 95% rename from deps_licenses/licenses_linux_user.txt rename to docs/linux.dependency.licenses.txt index 638f3b8b8..7fc506aca 100644 --- a/deps_licenses/licenses_linux_user.txt +++ b/docs/linux.dependency.licenses.txt @@ -5,7 +5,6 @@ cycler 0.11.0 BSD License fonttools 4.31.2 MIT License kiwisolver 1.4.2 BSD License - loguru 0.5.3 MIT License matplotlib 3.5.1 Python Software Foundation License networkx 2.7.1 BSD License numpy 1.22.3 BSD License diff --git a/script/make_utils/licenses.sh b/script/make_utils/licenses.sh index e876501b1..8c0f5ab8b 100755 --- a/script/make_utils/licenses.sh +++ b/script/make_utils/licenses.sh @@ -3,7 +3,7 @@ set -e BASENAME="licenses" -LICENSE_DIRECTORY="deps_licenses" +LICENSE_DIRECTORY="docs" CHECK=0 DIFF_TOOL="diff --ignore-all-space --ignore-tab-expansion --ignore-space-change --ignore-all-space --ignore-blank-lines --strip-trailing-cr" TMP_VENV_PATH="/tmp/tmp_venv" @@ -47,7 +47,7 @@ then #Licenses for user (install in a temporary venv) echo "Doing licenses for user" - FILENAME="${BASENAME}_${OS}_user.txt" + FILENAME="${OS}.dependency.${BASENAME}.txt" LICENSES_FILENAME="${LICENSE_DIRECTORY}/${FILENAME}" NEW_LICENSES_FILENAME="${OUTPUT_DIRECTORY}/${FILENAME}"