Skip to content

Commit

Permalink
Use kivy.__version__ for 2.x compatibility, bump version to 0.2.2
Browse files Browse the repository at this point in the history
Fixes #18
  • Loading branch information
Cheaterman committed Nov 1, 2020
1 parent 8001d42 commit c7cc413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panda3d_kivy/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def run(self):

# See https://github.com/kivy/kivy/pull/6937
kwargs = {}
version, *_ = kivy.parse_kivy_version(kivy.version.__version__)
version, *_ = kivy.parse_kivy_version(kivy.__version__)
major, *_ = version

if major < 2:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name='panda3d-kivy',
version='0.2.1',
version='0.2.2',
author='Cheaterman',
author_email='[email protected]',
description='Panda3D add-on for Kivy integration.',
Expand Down

0 comments on commit c7cc413

Please sign in to comment.