Skip to content

Commit

Permalink
Fix the PR template location, bump min python to 3.10, change install…
Browse files Browse the repository at this point in the history
… command (#17)

* Fix the PR template location and naming
* Add `--extra-index-url=https://pypi.ngc.nvidia.com` for onnx-graphsurgeon to the install command in the README
* Bump python 3.10 in pyproject.toml
  • Loading branch information
lukamac authored Nov 28, 2024
2 parents 7421833 + 5e7b417 commit 1945403
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Unless specified otherwise in the respective file headers, all code checked into

Installing Deeploy is as simple as running:
```
pip install -e .
pip install -e . --extra-index-url=https://pypi.ngc.nvidia.com
```
However, to run the code generated by Deeploy on a certain target, you need the toolchains and the simulators associated with this platform.

Expand All @@ -34,7 +34,7 @@ From the container, clone Deeploy, its submodules, and install the package with:
```
git clone https://github.com/pulp-platform/Deeploy.git && cd Deeploy
git submodule update --init --recursive
pip install -e .
pip install -e . --extra-index-url=https://pypi.ngc.nvidia.com
```
Congratulations, you installed Deeploy and its dependencies! Now, to test your installation let's run one simple test on each platform with the following commands:
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "Deeploy"
description = "Deeploy - Bring your networks to your platforms"
version = '0.1.0'
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
'protobuf==4.23.3',
'numpy<2.0.0',
Expand Down

0 comments on commit 1945403

Please sign in to comment.