Skip to content

Commit 3989616

Browse files
committed
Make requirements less restrictive for Python 3.8+
1 parent 0d35396 commit 3989616

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ projects.
1919

2020
## Installation
2121

22+
This package requires Python 3.8+.
23+
2224
For existing project, you can install it via pip:
2325

2426
```bash

nerfview/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "nerfview"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
description = "Interactive NeRF rendering web viewer"
99
readme = "README.md"
1010
license = { text = "MIT" }
@@ -18,7 +18,7 @@ classifiers = [
1818
"License :: OSI Approved :: MIT License",
1919
"Operating System :: OS Independent",
2020
]
21-
dependencies = ["viser==0.2.1", "jaxtyping==0.2.29"]
21+
dependencies = ["viser>=0.2.1", "jaxtyping>=0.2.15"]
2222

2323
[project.optional-dependencies]
2424
dev = ["black", "isort", "ipdb"]

0 commit comments

Comments
 (0)