-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Joshuaalbert/bump-to-jaxns-2-4-4
Bump to jaxns 2 4 4
- Loading branch information
Showing
9 changed files
with
35 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
jax | ||
jaxlib | ||
tensorflow | ||
tensorflow_probability | ||
jaxns>=2.2.3 | ||
jaxns==2.4.4 | ||
pydantic | ||
chex>=0.0.8 | ||
mctx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,24 +3,31 @@ | |
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
setup_requires = [ | ||
'jaxns>=2.2.1', | ||
install_requires = [ | ||
'jax', | ||
'jaxlib', | ||
'tensorflow_probability', | ||
'pydantic' | ||
'jaxns==2.4.4', | ||
'pydantic', | ||
'chex>=0.0.8', | ||
'mctx', | ||
'pyDOE2', | ||
'matplotlib', | ||
'etils' | ||
] | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup(name='bojaxns', | ||
version='1.0.5', | ||
version='1.1.1', | ||
description='Bayesian Optimisation with JAXNS', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/joshuaalbert/bojaxns", | ||
author='Joshua G. Albert', | ||
author_email='[email protected]', | ||
setup_requires=setup_requires, | ||
install_requires=install_requires, | ||
tests_require=[ | ||
'pytest>=2.8', | ||
], | ||
|