From ee247fe207675c0d123a2c587b969d47bbbd50f5 Mon Sep 17 00:00:00 2001 From: Nadav Bhonker Date: Tue, 28 Feb 2017 10:35:51 +0200 Subject: [PATCH] reduced required cmake from 3.0.2 to 2.8, version bump --- CMakeLists.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e98b1f..6ae84e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.02) +cmake_minimum_required (VERSION 2.8) project(rle) option(USE_SDL "Use SDL" OFF) diff --git a/setup.py b/setup.py index 786c1f4..082593d 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def run(self): ds.spawn(['./copy_cores.sh']) _build.build.run(self) -version = '1.1.1' +version = '1.1.2' setup(name = 'rle_python_interface', version=version, description = 'Retro Learning Environment Python Interface based on Ben Goodrich\'s work',