Skip to content

Commit

Permalink
Updated TF version
Browse files Browse the repository at this point in the history
  • Loading branch information
franneck94 committed Sep 10, 2021
1 parent 251461f commit 5770f90
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# TensorFLow Libraries
tensorflow==2.4.*
tensorflow>=2.0
tensorflow-datasets

# Libraries
scikit-learn
scipy
numpy==1.19.2
numpy

# Docs
mkdocs
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

CLASSIFIERS = """\
License :: OSI Approved
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7 :: 3.8 :: 3.9
Topic :: Software Development
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Expand All @@ -26,7 +26,7 @@
VERSION = __version__
ISRELEASED = False

PYTHON_VERSION = "3.8"
MIN_PYTHON_VERSION = "3.7"
INSTALL_REQUIRES = [
"tensorflow>=2.0",
"numpy",
Expand All @@ -42,7 +42,7 @@
long_description=README,
packages=PACKAGES,
author=AUTHORS,
python_requires=f"=={PYTHON_VERSION}",
python_requires=f">={MIN_PYTHON_VERSION}",
install_requires=INSTALL_REQUIRES,
description=DESCRIPTION,
classifiers=[CLASSIFIERS],
Expand Down
2 changes: 1 addition & 1 deletion tensorcross/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.4.0"

0 comments on commit 5770f90

Please sign in to comment.