Skip to content

Commit b0bbe49

Browse files
author
Thomas Pinder
committed
Move reqs
1 parent b4a440c commit b0bbe49

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ def parse_requirements_file(filename):
1111
return requires
1212

1313

14+
REQUIRES = [
15+
"jax==0.3.2",
16+
"jaxlib==0.3.2",
17+
"optax>=0.1.0",
18+
"chex==0.1.3",
19+
"distrax>=0.1.2",
20+
"tensorflow == 2.8.1",
21+
"tensorflow-probability==0.16.0",
22+
"tqdm>=4.0.0",
23+
"ml-collections==0.1.0",
24+
"protobuf==3.19.0",
25+
]
26+
27+
1428
# Optional Packages
1529
EXTRAS = {
1630
"dev": [
@@ -59,7 +73,7 @@ def find_version(*file_paths):
5973
"Documentation": "https://gpjax.readthedocs.io/en/latest/",
6074
"Source": "https://github.com/thomaspinder/GPJax",
6175
},
62-
install_requires=parse_requirements_file("requirements.txt"),
76+
install_requires=REQUIRES, # parse_requirements_file("requirements.txt"),
6377
extras_require=EXTRAS,
6478
keywords=["gaussian-processes jax machine-learning bayesian"],
6579
)

0 commit comments

Comments
 (0)