Skip to content

Commit

Permalink
update to 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hycis committed Jun 29, 2021
1 parent 6e91157 commit bbaf5c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@

setup(
name='tensorgraph',
url='https://github.com/hycis/TensorGraphX',
download_url = 'https://github.com/hycis/TensorGraphX/tarball/{}'.format(__version__),
version=__version__,
author='Joe Wu',
url='https://github.com/hycis/TensorGraph',
download_url = 'https://github.com/hycis/TensorGraph/tarball/{}'.format(__version__),
license='Apache 2.0, see LICENCE',
description='A high level tensorflow library for building deep learning models',
long_description=open('README.md').read(),
packages=find_packages(),
zip_safe=False,
include_package_data=True
include_package_data=True,
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.17',
'pandas>=0.17',
'scipy>=0.17'],
)
2 changes: 1 addition & 1 deletion tensorgraph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = "7.6.2"
__version__ = "7.0"

from .stopper import EarlyStopper
from .sequential import Sequential
Expand Down

0 comments on commit bbaf5c3

Please sign in to comment.