Skip to content

Commit

Permalink
Update deps file (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZijunZhou authored Aug 12, 2024
1 parent ef827a8 commit e61532d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include requirements.in
include requirements.txt
8 changes: 1 addition & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
)

0 comments on commit e61532d

Please sign in to comment.