From fbe262b1c507936fda77b9ad561d66a36893e523 Mon Sep 17 00:00:00 2001 From: Zijun Zhou Date: Mon, 12 Aug 2024 23:51:03 +0000 Subject: [PATCH] Update deps file --- MANIFEST.in | 2 +- Makefile | 8 +------- README.md | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9d4615bd..540b7204 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include requirements.in \ No newline at end of file +include requirements.txt \ No newline at end of file diff --git a/Makefile b/Makefile index a7699a53..a8a88085 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,9 @@ PYTHON := python PIP := $(PYTHON) -m pip GRPC_TOOLS_VERSION := 1.62.1 -all: update-and-install-deps generate-protos format check +all: install-deps generate-protos format check # Dependency management targets -update-and-install-deps: update-deps install-deps - -update-deps: - $(PIP) install pip-tools - $(PYTHON) -m piptools compile requirements.in - install-deps: $(PIP) install pytype pylint pyink -r requirements.txt -r benchmarks/requirements.in diff --git a/README.md b/README.md index 2159c0fd..62959c46 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Currently, there are two reference engine implementations available -- one for J ### Setup ``` -make update-and-install-deps +make install-deps ``` ### Run local server & Testing diff --git a/setup.py b/setup.py index c4efd21e..55b91c3b 100644 --- a/setup.py +++ b/setup.py @@ -39,5 +39,5 @@ def parse_requirements(filename): "Operating System :: OS Independent", ], python_requires=">=3.10", - install_requires=parse_requirements("requirements.in"), + install_requires=parse_requirements("requirements.txt"), )