Merge pull request #272 from pylast/single-source-package-version

Single-source the package version
This commit is contained in:
Hugo 2018-06-09 10:17:36 +03:00 committed by GitHub
commit 1997154a81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 9 deletions

View file

@ -1,4 +1,4 @@
include pylast/__init__.py include pylast/*.py
include setup.py include setup.py
include README.md include README.md
include COPYING include COPYING

View file

@ -1,10 +1,10 @@
# Release Checklist # Release Checklist
* [ ] Get master to the appropriate code release state. [Travis CI](https://travis-ci.org/pylast/pylast) should be running cleanly for all merges to master. * [ ] Get master to the appropriate code release state. [Travis CI](https://travis-ci.org/pylast/pylast) should be running cleanly for all merges to master.
* [ ] Remove `.dev0` suffix from version in `pylast/__init__.py` and `setup.py`: * [ ] Remove `.dev0` suffix from the version:
```bash ```bash
git checkout master git checkout master
edit pylast/__init__.py setup.py edit pylast/version.py
``` ```
* [ ] Commit and tag with the version number: * [ ] Commit and tag with the version number:
```bash ```bash
@ -28,10 +28,10 @@ git push --tags
* [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new * [ ] Create new GitHub release: https://github.com/pylast/pylast/releases/new
* Tag: Pick existing tag "2.1.0" * Tag: Pick existing tag "2.1.0"
* Title: "Release 2.1.0" * Title: "Release 2.1.0"
* [ ] Increment version and append `.dev0` in `pylast/__init__.py` and `setup.py`: * [ ] Increment version and append `.dev0`:
```bash ```bash
git checkout master git checkout master
edit pylast/__init__.py setup.py edit pylast/version.py
``` ```
* [ ] Commit and push: * [ ] Commit and push:
```bash ```bash

View file

@ -32,14 +32,15 @@ import tempfile
import time import time
import xml.dom import xml.dom
__version__ = "2.4.0.dev0" from . import version
__author__ = "Amr Hassan, hugovk, Mice Pápai" __author__ = "Amr Hassan, hugovk, Mice Pápai"
__copyright__ = ( __copyright__ = (
"Copyright (C) 2008-2010 Amr Hassan, 2013-2018 hugovk, " "2017 Mice Pápai" "Copyright (C) 2008-2010 Amr Hassan, 2013-2018 hugovk, " "2017 Mice Pápai"
) )
__license__ = "apache2" __license__ = "apache2"
__email__ = "amr.hassan@gmail.com" __email__ = "amr.hassan@gmail.com"
__version__ = version.__version__
if sys.version_info.major == 2: if sys.version_info.major == 2:
import htmlentitydefs import htmlentitydefs

2
pylast/version.py Normal file
View file

@ -0,0 +1,2 @@
# Master version for pylast
__version__ = "2.4.0.dev0"

View file

@ -4,11 +4,16 @@ from setuptools import find_packages, setup
with open("README.md") as f: with open("README.md") as f:
long_description = f.read() long_description = f.read()
version_dict = {}
with open("pylast/version.py") as f:
exec(f.read(), version_dict)
version = version_dict["__version__"]
setup( setup(
name="pylast", name="pylast",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
version="2.4.0.dev0", version=version,
author="Amr Hassan <amr.hassan@gmail.com> and Contributors", author="Amr Hassan <amr.hassan@gmail.com> and Contributors",
install_requires=["six"], install_requires=["six"],
tests_require=[ tests_require=[

View file

@ -44,4 +44,4 @@ deps =
black black
commands = commands =
{[testenv:lint]commands} {[testenv:lint]commands}
black --check . black --check --diff .