From ef55f30aaa899972b3711a0105e5af6e20b89ca8 Mon Sep 17 00:00:00 2001 From: Adam Lerer Date: Fri, 15 Oct 2021 08:38:23 -0700 Subject: [PATCH] remove pkg_resources --- torchbiggraph/__init__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/torchbiggraph/__init__.py b/torchbiggraph/__init__.py index 3c4697a..e5a0d9b 100755 --- a/torchbiggraph/__init__.py +++ b/torchbiggraph/__init__.py @@ -1,10 +1 @@ #!/usr/bin/env python3 - -import pkg_resources - - -__version__ = ( - pkg_resources.resource_string("torchbiggraph", "VERSION.txt") - .decode("utf-8") - .strip() -)