From f82ed4e03627f3149da0675432f218c5ead468e2 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Thu, 4 Jan 2018 13:48:08 -0500 Subject: Updating version and changelog in preparation for minor bug fix realease --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index efe715be..a9ef1b51 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ Setuptools setup file, used to install or test 'cmd2' import sys from setuptools import setup -VERSION = '0.7.9a' +VERSION = '0.7.9' DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python" LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It -- cgit v1.2.1 From 202eb16bb2d14f986dd8cbc5a2df540df50a0789 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Thu, 4 Jan 2018 13:58:09 -0500 Subject: Fix Travis CI builds Python 3.3 builds appear to be no longer supported on Travis CI. This replaces Python 3.3 with Python 3.7-dev for Travis CI builds. --- setup.py | 1 - 1 file changed, 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index a9ef1b51..d7082b34 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,6 @@ Programming Language :: Python Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 -Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 -- cgit v1.2.1 From c447ee4b1bff681396a4c6bff54decd6ce852e55 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Thu, 4 Jan 2018 14:09:32 -0500 Subject: Disabled Python 3.7-dev build in Travis CI There are a couple unit test failures with Python 3.7-dev that we will need to look into at some point, so I disabled that build for now. Updated all documentation to reflect that cmd2 is support on Python 2.7 and 3.4+. Official support for Python 3.3 has been abandoned due to no longer having support to test on that platform on Travis CI. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index d7082b34..ca4200fc 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ Main features: - Parsing commands with flags - Unicode character support (*Python 3 only*) - Good tab-completion of commands, file system paths, and shell commands - - Python 2.7 and 3.3+ support + - Python 2.7 and 3.4+ support - Linux, macOS and Windows support - Trivial to provide built-in help for all commands - Built-in regression testing framework for your applications (transcript-based testing) -- cgit v1.2.1