Skip to content

Commit edd4453

Browse files
committed
Version bump for dev.
Also, make setup.py just refer to the version string in components/__init__.py. More DRY.
1 parent bcca148 commit edd4453

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Just my __init__.py to conform to standards.
33
"""
4-
__version__ = "3.0.1-alpha"
4+
__version__ = "3.0.1-alpha-dev"

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from distutils.core import setup
2+
from components import __version__
23

34
import os
45

@@ -12,7 +13,7 @@ def get_font_paths():
1213

1314
setup(
1415
name="PyGame Objects",
15-
version="3.0.1-alpha",
16+
version=__version__,
1617
author="Chad Estioco",
1718
author_email="[email protected]",
1819
url="https://github.com/skytreader/PyGame-Objects",

0 commit comments

Comments
 (0)