Skip to content
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.

Commit

Permalink
2018.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Feb 17, 2018
1 parent f599cfc commit 57a52f1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## 2018.1.2

* FEATURE - analytics client is now automatically initialized and in scope for a game agent
* FIX - analytics WAMP component now uses the analytics topic config key to determine redis key
* FIX - Locking Tensorflow to appropriate version on Windows

## 2018.1.1

* FIX - use interpolation order 0 in frame transformation pipeline resize
Expand Down
12 changes: 9 additions & 3 deletions serpent/serpent.py
Expand Up @@ -15,7 +15,7 @@
# Add the current working directory to sys.path to discover user plugins!
sys.path.insert(0, os.getcwd())

VERSION = "2018.1.0"
VERSION = "2018.1.2"

valid_commands = [
"setup",
Expand Down Expand Up @@ -217,9 +217,15 @@ def setup_ml():
tensorflow_backend = "CPU"

if tensorflow_backend == "GPU":
subprocess.call(shlex.split("pip install tensorflow-gpu==1.4.1"))
if is_windows():
subprocess.call(shlex.split("pip install tensorflow-gpu==1.4.0"))
else:
subprocess.call(shlex.split("pip install tensorflow-gpu==1.4.1"))
elif tensorflow_backend == "CPU":
subprocess.call(shlex.split("pip install tensorflow==1.4.1"))
if is_windows():
subprocess.call(shlex.split("pip install tensorflow==1.4.0"))
else:
subprocess.call(shlex.split("pip install tensorflow==1.4.1"))

subprocess.call(shlex.split("pip install Keras"))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -75,7 +75,7 @@

setup(
name='SerpentAI',
version="2018.1.1",
version="2018.1.2",
description='Game Agent Development Kit. Helping you create AIs / Bots to play any game you own!',
long_description=long_description,
author="Nicholas Brochu",
Expand Down

0 comments on commit 57a52f1

Please sign in to comment.