"git@developer.sourcefind.cn:OpenDAS/pytorch3d.git" did not exist on "7980854d44903cbe1bd5adb983be1e0ee6f1765e"
Unverified Commit f4b66873 authored by Philip Meier's avatar Philip Meier Committed by GitHub
Browse files

Fix warnings spotted in prototype datasets tests (#4668)

* fix category file inclusion

* fix deprecated import
parent a3541eb2
......@@ -466,7 +466,7 @@ if __name__ == "__main__":
license="BSD",
# Package info
packages=find_packages(exclude=("test",)),
package_data={package_name: ["*.dll", "*.dylib", "*.so", "*.categories"]},
package_data={package_name: ["*.dll", "*.dylib", "*.so", "prototype/datasets/_builtin/*.categories"]},
zip_safe=False,
install_requires=requirements,
extras_require={
......
......@@ -5,7 +5,7 @@ import os
import pathlib
import textwrap
import warnings
from collections import Mapping
from collections.abc import Mapping
from typing import (
Any,
Callable,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment