Merge branch 'PythonicChemist-master' into next

This commit is contained in:
Mathieu Comandon 2018-11-18 17:42:50 -08:00
commit d17672ae6c
4 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,4 @@
VERSION=`grep "VERSION" lutris/settings.py | cut -d" " -f 3 | sed 's|"\(.*\)"|\1|'`
GITBRANCH=master
VERSION=`grep "__version__" lutris/__init__.py | cut -d" " -f 3 | sed 's|"\(.*\)"|\1|'`
cover:
rm tests/fixtures/pga.db -f

View file

@ -1 +1,3 @@
"""Main Lutris package"""
__version__ = "0.5.0-alpha"

View file

@ -2,9 +2,10 @@
import os
from gi.repository import GLib
from lutris.util.settings import SettingsIO
from lutris import __version__
PROJECT = "Lutris"
VERSION = "0.5.0-alpha"
VERSION = __version__
COPYRIGHT = "(c) 2010-2018 Lutris Gaming Platform"
AUTHORS = ["Mathieu Comandon <strycore@gmail.com>",
"Pascal Reinhard (Xodetaetl) <dev@xod.me"]

View file

@ -2,7 +2,7 @@
import os
import sys
from setuptools import setup
from lutris.settings import VERSION
from lutris import __version__ as VERSION
if sys.version_info < (3, 4):
sys.exit('Python 3.4 is required to run Lutris')