We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5230acc commit 45c0e89Copy full SHA for 45c0e89
sharktank/setup.py
@@ -11,8 +11,6 @@
11
12
from setuptools import find_namespace_packages, setup # type: ignore
13
14
-THIS_DIR = Path(__file__).resolve().parent
15
-REPO_DIR = THIS_DIR.parent
16
SETUPPY_DIR = os.path.realpath(os.path.dirname(__file__))
17
18
@@ -58,7 +56,7 @@ def load_requirement_pins(requirements_file: Path):
58
56
requirement_pins.update(dict(pin_pairs))
59
57
60
61
-load_requirement_pins(REPO_DIR / "requirements.txt")
+load_requirement_pins("requirements.txt")
62
63
64
def get_version_spec(dep: str):
0 commit comments