File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff 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
1529EXTRAS = {
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)
You can’t perform that action at this time.
0 commit comments