Skip to content

Commit c7d3f7c

Browse files
committed
add jax to setup, set 0.1 version
1 parent c1da933 commit c7d3f7c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525

2626
tensorflow_requires = ['tensorflow']
2727
torch_requires = ['torch']
28-
all_requires = tensorflow_requires + torch_requires
28+
jax_requires = ['jax', 'jaxlib']
29+
all_requires = tensorflow_requires + torch_requires + jax_requires
2930

3031
exec(open('tsensor/version.py').read())
3132
setup(
@@ -40,8 +41,9 @@
4041
install_requires=['graphviz>=0.14.1','numpy','IPython', 'matplotlib'],
4142
extras_require = {'all': all_requires,
4243
'torch': torch_requires,
43-
'tensorflow': tensorflow_requires
44-
},
44+
'tensorflow': tensorflow_requires,
45+
'jax': jax_requires
46+
},
4547
description='The goal of this library is to generate more helpful exception messages for numpy/pytorch tensor algebra expressions.',
4648
# keywords='visualization data structures',
4749
classifiers=['License :: OSI Approved :: MIT License',

tsensor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
SOFTWARE.
2323
"""
24-
__version__ = '0.1b7'
24+
__version__ = '0.1'

0 commit comments

Comments
 (0)