Merge branch 'bump-version' into 'master'
Bump version post release.

See merge request !217
commit b11aca26b8f1a6752bc839f21e3f9c0d674c1eb7
2 parents d3e392a + cae1e4e
@Abhilash Raj Abhilash Raj authored on 16 Aug 2017
Showing 2 changed files
View
17
setup.py
#
# You should have received a copy of the GNU Lesser General Public License
# along with Postorius. If not, see <http://www.gnu.org/licenses/>.
 
import re
import sys
from setuptools import setup, find_packages
 
# Calculate the version number without importing the postorius package.
with open('src/postorius/__init__.py') as fp:
for line in fp:
mo = re.match("__version__ = '(?P<version>[^']+?)'", line)
if mo:
__version__ = mo.group('version')
break
else:
print('No version number found')
sys.exit(1)
 
 
setup(
name="postorius",
version='1.1.0',
version=__version__,
description="A web user interface for GNU Mailman",
long_description=open('README.rst').read(),
maintainer="The Mailman GSOC Coders",
license='GPLv3',
keywords='email mailman django',
url=" https://gitlab.com/mailman/postorius",
classifiers=[
"Programming Language :: Python",
],
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
View
2
■■■
src/postorius/__init__.py
# Postorius. If not, see <http://www.gnu.org/licenses/>.
 
from __future__ import absolute_import, unicode_literals
 
__version__ = '1.1.0'
__version__ = '1.1.1'
default_app_config = 'postorius.apps.PostoriusConfig'