From dd5573b082353b6106011ac121f111669406f8b3 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 6 Mar 2019 19:34:31 +0100 Subject: [PATCH] version bumps --- animation_nodes/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/animation_nodes/__init__.py b/animation_nodes/__init__.py index c352aef2f..a3b7be32f 100644 --- a/animation_nodes/__init__.py +++ b/animation_nodes/__init__.py @@ -23,7 +23,7 @@ "name": "Animation Nodes", "description": "Node based visual scripting system designed for motion graphics in Blender.", "author": "Jacques Lucke", - "version": (2, 1, 3), + "version": (2, 1, 4), "blender": (2, 80, 0), "location": "Node Editor", "category": "Node", diff --git a/setup.py b/setup.py index 6a994e2fd..d78e94373 100644 --- a/setup.py +++ b/setup.py @@ -200,9 +200,9 @@ def checkBuildEnvironment(checkCython, checkPython): sys.exit() if checkPython: v = sys.version_info - if v.major != 3 or v.minor != 5: + if v.major != 3 or v.minor != 7: print(textwrap.dedent('''\ - Blender 2.78/2.79 officially uses Python 3.5.x. + Blender 2.8 officially uses Python 3.7.x. You are using: {} Use the --noversioncheck option to disable this check.\