From bae7849a73626d86046e17e4b333ab842ff515c3 Mon Sep 17 00:00:00 2001 From: Michael Herrmann Date: Mon, 4 Mar 2019 08:09:00 +0100 Subject: [PATCH] Set version number for release 0.7.1 --- fbs/_defaults/requirements/base.txt | 2 +- setup.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fbs/_defaults/requirements/base.txt b/fbs/_defaults/requirements/base.txt index d81df54..dfe2480 100644 --- a/fbs/_defaults/requirements/base.txt +++ b/fbs/_defaults/requirements/base.txt @@ -1,2 +1,2 @@ -fbs==0.7.0 +fbs==0.7.1 PyInstaller==3.4 \ No newline at end of file diff --git a/setup.py b/setup.py index 7e08b79..6906a84 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ -"""Easily create cross-platform desktop applications with PyQt +"""Create cross-platform desktop applications with Python and Qt See: -https://github.com/mherrmann/fbs +https://build-system.fman.io """ from os.path import relpath, join @@ -17,11 +17,11 @@ def _get_package_data(pkg_dir, data_subdir): result.append(relpath(filepath, pkg_dir)) return result -description = 'Easily create cross-platform desktop applications with PyQt' +description = 'Create cross-platform desktop applications with Python and Qt' setup( name='fbs', # Also update fbs/_defaults/requirements/base.txt when you change this: - version='0.7.1-SNAPSHOT', + version='0.7.1', description=description, long_description= description + '\n\nHome page: https://build-system.fman.io',