From 7a4c207565e59d0827aff512fd986e78245a3f6f Mon Sep 17 00:00:00 2001 From: weidler Date: Mon, 25 Jul 2022 12:00:53 +0200 Subject: [PATCH] Bumped TF version; Adjusted package version in setup. --- requirements.txt | 4 ++-- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index a083c8ce..fea9649f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -numpy==1.19.5 +numpy==1.23.0 Box2D gym==0.24.0 mujoco -tensorflow==2.4.2 +tensorflow==2.9.1 mpi4py==3.1.3 tqdm simplejson diff --git a/setup.py b/setup.py index c7131e00..b0a4dd5c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='angorapy', - version='0.7.1', + version='0.8.0', description='ANthropomorphic Goal-ORiented Modeling, Learning and Analysis for Neuroscience', long_description=long_description, url='https://github.com/ccnmaastricht/dexterous-robot-hand', @@ -16,11 +16,11 @@ packages=find_packages(), include_package_data=True, install_requires=[ - "numpy==1.19.5", + "numpy==1.23.0", "Box2D", "gym==0.24.0", "mujoco", - "tensorflow==2.4.2", + "tensorflow==2.9.1", "mpi4py==3.1.3", "tqdm", "simplejson",