Skip to content

Commit 0f8615c

Browse files
authored
Merge pull request #1135 from zuntrax/version-bump
Prepare release 0.4.0
2 parents 3bc7954 + 3c9c245 commit 0f8615c

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ set(CMAKE_CXX_STANDARD 17)
3838
set(CMAKE_CXX_STANDARD_REQUIRED ON)
3939

4040
# Python and Cython requirements
41-
set(PYTHON_MIN_VERSION 3.4)
41+
set(PYTHON_MIN_VERSION 3.6)
4242
set(CYTHON_MIN_VERSION 0.25)
4343

4444
# CMake policies

buildsystem/simple

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# this script was written by carefully looking at the output of make VERBOSE=1.
1313
# if you add libraries/etc to the project, please update this script accordingly (and test it).
1414

15-
PYVER=3.4m
16-
PYVERDOTLESS=34m
15+
PYVER=3.6m
16+
PYVERDOTLESS=36m
1717
shopt -s globstar
1818

1919
function run() {

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import shutil
1616
import subprocess
1717
import sys
1818

19-
if sys.version_info < (3, 4):
20-
print("openage requires Python 3.4 or higher")
19+
if sys.version_info < (3, 6):
20+
print("openage requires Python 3.6 or higher")
2121
exit(1)
2222

2323

doc/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Dependencies are needed for:
2828
Dependency list:
2929

3030
C gcc >=7 or clang >=5
31-
CRA python >=3.4
31+
CRA python >=3.6
3232
C cython >=0.25
3333
C cmake >=3.8.0
3434
A numpy

openage/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
77
See https://openage.sft.mx and http://github.com/sfttech/openage.
88
9-
Requires Python 3.4.
9+
Requires Python 3.6.
1010
"""
1111

1212
from sys import version_info as py_version
1313

1414
from .log import setup_logging
1515

16-
if py_version < (3, 4):
17-
raise Exception("openage requires python 3.4 or higher.")
16+
if py_version < (3, 6):
17+
raise Exception("openage requires python 3.6 or higher.")
1818

1919

2020
try:

openage_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.3.1
1+
v0.4.0

0 commit comments

Comments
 (0)