Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps file #130

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"),
)
Loading