aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaoirse Stewart <saoirse.stewart@arm.com>2023-02-15 10:49:15 +0000
committerSaoirse Stewart <saoirse.stewart@arm.com>2023-02-20 15:41:28 +0000
commit3ea3e29500682f90d2c735ec43ce3763efb4b75a (patch)
treef94c17deddccee234dddc1ae5f2897aa17aaf465
parentf756c5179bafd98cc4e912de8c4177cc4c000519 (diff)
downloadtosa_checker-3ea3e29500682f90d2c735ec43ce3763efb4b75a.tar.gz
Update the TensorFlow version to 2.11.0 used by the TOSA Checker
Change-Id: I55661102918990c4f3a71abf9c7197cf3b86d427
-rw-r--r--docker/CI.Dockerfile4
-rw-r--r--docker/Dockerfile4
-rw-r--r--setup.py4
-rw-r--r--tests/requirements.txt2
-rw-r--r--tosa_checker/__init__.py2
5 files changed, 8 insertions, 8 deletions
diff --git a/docker/CI.Dockerfile b/docker/CI.Dockerfile
index d5ebfce..23a9a8e 100644
--- a/docker/CI.Dockerfile
+++ b/docker/CI.Dockerfile
@@ -3,8 +3,8 @@
FROM ubuntu:22.04
ARG PYTHON_VERSION=3.9
-ARG BAZEL_VERSION=5.1.1
-ARG TENSORFLOW_VERSION=2.9.0
+ARG BAZEL_VERSION=5.3.0
+ARG TENSORFLOW_VERSION=2.11.0
RUN apt-get update
RUN apt-get install -y build-essential software-properties-common clang curl unzip git libc++-dev libc++abi-dev
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 4a8a68c..eb5292d 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -3,8 +3,8 @@
FROM quay.io/pypa/manylinux2014_x86_64
ARG PYTHON_VERSION=3.9
-ARG TENSORFLOW_VERSION=2.9.0
-ARG BAZEL_VERSION=5.1.1
+ARG TENSORFLOW_VERSION=2.11.0
+ARG BAZEL_VERSION=5.3.0
RUN ln -s /opt/_internal/cpython-$PYTHON_VERSION*/bin/python3 /usr/local/bin/python3 && \
ln -s /opt/_internal/cpython-$PYTHON_VERSION*/bin/python /usr/local/bin/python && \
diff --git a/setup.py b/setup.py
index 07baede..0ade3ec 100644
--- a/setup.py
+++ b/setup.py
@@ -11,8 +11,8 @@ import sys
import time
-TOSA_CHECKER_VERSION = "0.1.0"
-DEFAULT_TENSORFLOW_VERSION = "2.9.0"
+TOSA_CHECKER_VERSION = "0.2.0a1"
+DEFAULT_TENSORFLOW_VERSION = "2.11.0"
# Get the TensorFlowâ„¢ source directory passed to the command line (if any).
# If none is given the sources are pulled from the official TF repository.
diff --git a/tests/requirements.txt b/tests/requirements.txt
index 9984726..1e17ff6 100644
--- a/tests/requirements.txt
+++ b/tests/requirements.txt
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
-tensorflow==2.9.1
+tensorflow==2.11.0
pytest==7.1.2
diff --git a/tosa_checker/__init__.py b/tosa_checker/__init__.py
index ce76797..3484b5a 100644
--- a/tosa_checker/__init__.py
+++ b/tosa_checker/__init__.py
@@ -5,4 +5,4 @@
from _tosa_checker_wrapper import *
-__version__ = "0.1.0"
+__version__ = "0.2.0a1"