Skip to content

Commit 54c408a

Browse files
committed
tf2.8.0
1 parent e0d86ab commit 54c408a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
${{ runner.os }}-pip-
3030
- name: Install dependencies
3131
run: |
32-
pip install tensorflow==2.8.0rc1 --progress-bar off --upgrade
32+
pip install tensorflow==2.8.0 --progress-bar off --upgrade
3333
pip install -e ".[tests]" --progress-bar off
3434
- name: Test with pytest
3535
run: |
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install dependencies
5959
run: |
6060
python -m pip install --upgrade pip setuptools
61-
pip install tensorflow==2.8.0rc1 --progress-bar off --upgrade
61+
pip install tensorflow==2.8.0 --progress-bar off --upgrade
6262
pip install -e .
6363
pip install -r docs/requirements.txt
6464
- name: Build the docs

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
keywords=["AutoML", "Keras"],
1919
install_requires=[
2020
"packaging",
21-
"tensorflow>=2.8.0rc1",
21+
"tensorflow>=2.8.0",
2222
"keras-tuner>=1.1.0",
2323
"pandas",
2424
],
@@ -42,6 +42,8 @@
4242
"License :: OSI Approved :: Apache Software License",
4343
"Programming Language :: Python :: 3.7",
4444
"Programming Language :: Python :: 3.8",
45+
"Programming Language :: Python :: 3.9",
46+
"Programming Language :: Python :: 3.10",
4547
"Topic :: Scientific/Engineering :: Mathematics",
4648
"Topic :: Software Development :: Libraries :: Python Modules",
4749
"Topic :: Software Development :: Libraries",

0 commit comments

Comments
 (0)