From 647d2c61d35b93ae59ac82feff8058779c9b947f Mon Sep 17 00:00:00 2001 From: einarf Date: Wed, 9 Oct 2019 23:32:53 +0200 Subject: [PATCH] bump version --- docs/conf.py | 2 +- moderngl_window/__init__.py | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ea27a75b..86d93a67 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ def __getattr__(cls, name): author = 'Einar Forselv' # The short X.Y version -version = '1.4.0' +version = '1.5.0' # The full version, including alpha/beta/rc tags release = version diff --git a/moderngl_window/__init__.py b/moderngl_window/__init__.py index 93035946..2c737219 100644 --- a/moderngl_window/__init__.py +++ b/moderngl_window/__init__.py @@ -16,7 +16,7 @@ from moderngl_window.conf import settings from moderngl_window.utils.module_loading import import_string -__version__ = '1.4.0' +__version__ = '1.5.0' IGNORE_DIRS = [ '__pycache__', diff --git a/setup.py b/setup.py index 6d8e1202..932b531c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="moderngl_window", - version="1.4.0", + version="1.5.0", description="A cross platform helper library for ModernGL making window creation and resource loading simple", long_description=open('README.md').read(), long_description_content_type='text/markdown', @@ -41,6 +41,7 @@ "PySDL2": ['PySDL2>=0.9.6'], "pywavefront": ["pywavefront>=1.2.0"], "trimesh": ["trimesh==3.2.6", "scipy>=1.3"], + "tk": ["pyopengl==3.1.0", "pyopengltk==0.0.1"], }, project_urls={ 'Documentation': 'https://moderngl-window.readthedocs.io',