Skip to content

Commit 862d762

Browse files
authored
[fix] remove deprecated get_distribution from __init__.py
1 parent 7d10874 commit 862d762

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dfparser/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import os
66
import sys
77

8-
from pkg_resources import get_distribution
9-
108
CUR_DIR = os.path.dirname(os.path.realpath(__file__))
119
if CUR_DIR not in sys.path:
1210
sys.path.append(CUR_DIR)
@@ -26,4 +24,4 @@
2624
from rsh_parser import serialise_to_rsh
2725
from rsh_parser import serialize_to_rsb
2826

29-
__version__ = get_distribution('dfparser').version
27+
__version__ = "MASTER"

0 commit comments

Comments
 (0)