Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.
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
7 changes: 5 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
# under the License.
#

## To install all dependencies, run: pip install -r requirements.txt
## To install primary (not dev) dependencies, run:
# pip install -r requirements.txt

## To install ALL (including dev) dependencies, run:
# pip install -r requirements_dev.txt


## Configuration options
Expand All @@ -31,7 +35,6 @@

## Dependencies

# IMPORTANT: Any changes to these dependencies should be copied to requirements_dev.txt.
typedb-protocol==2.14.1
grpcio>=1.43.0,<2
protobuf>=3.15.5,<4
14 changes: 3 additions & 11 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,12 @@
# under the License.
#

## To install all dependencies, run: pip install -r requirements_dev.txt
## To install ALL dependencies, run: pip install -r requirements_dev.txt


## Configuration options
## Primary Dependencies

# Allow importing of snapshots
--extra-index-url https://repo.vaticle.com/repository/pypi-snapshot/simple


## Dependencies

typedb-protocol==2.14.1
grpcio>=1.43.0,<2
protobuf>=3.15.5,<4
-r requirements.txt


# Dev dependencies (not required to use the typedb-client package, but necessary for its development)
Expand Down