From ea9ae0bbfdee4ff2d8b96fdf8843ff20bc2b1739 Mon Sep 17 00:00:00 2001 From: Paul Barrett Date: Sun, 31 Jul 2022 23:53:36 -0500 Subject: [PATCH 1/4] Removed comma that pypi didn't like. --- .pre-commit-config.yaml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9aa01be..37c64e5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -71,7 +71,7 @@ repos: rev: v2.0.0 hooks: - id: setup-cfg-fmt - args: [--min-py3-version=3.5] + args: [--include-version-classifiers] - repo: https://github.com/asottile/add-trailing-comma rev: v2.2.3 diff --git a/setup.cfg b/setup.cfg index 30d304f..c00d65a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ classifiers = Intended Audience :: Developers License :: OSI Approved :: MIT License Operating System :: OS Independent + Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.7 @@ -23,7 +24,6 @@ classifiers = Programming Language :: Python :: 3.10 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy - Programming Language :: Python, Topic :: Software Development :: Libraries :: Python Modules [options] From 9ddc9c756d2c447a322ce3f72b37c79bb40724ce Mon Sep 17 00:00:00 2001 From: Paul Barrett Date: Mon, 1 Aug 2022 00:07:45 -0500 Subject: [PATCH 2/4] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ff4be85..f424d6c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,8 +23,8 @@ platformdirs==2.5.2 pluggy==1.0.0 ptyprocess==0.7.0 py==1.11.0 -pycodestyle==2.8.0 pyflakes==2.5.0 +pycodestyle==2.9.0 Pygments==2.12.0 pyparsing==3.0.9 pyte==0.8.1 From 59fed3a1e4ecf0cd33455645d89a362ce1320029 Mon Sep 17 00:00:00 2001 From: Paul Barrett Date: Mon, 1 Aug 2022 00:09:31 -0500 Subject: [PATCH 3/4] Bump version to 0.6.2 --- cursesmenu/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cursesmenu/__init__.py b/cursesmenu/__init__.py index 0b66c6f..b2c00b1 100644 --- a/cursesmenu/__init__.py +++ b/cursesmenu/__init__.py @@ -4,4 +4,4 @@ __all__ = ["CursesMenu", "ItemGroup", "items"] -__version__ = "0.6.1" +__version__ = "0.6.2" From ec2d2afe4167c0d7bd3e921c826ffa594c5ced9e Mon Sep 17 00:00:00 2001 From: Paul Barrett Date: Mon, 1 Aug 2022 00:10:15 -0500 Subject: [PATCH 4/4] Update changelog --- CHANGELOG.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7947417..aeffba6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,13 @@ +Version 0.6.2 +------------- + +* Fixed bug that breaks doc build + Version 0.6.1 ------------- * Mostly just fixed bugs in tests -* Improved cross-platform functionality of CommandITem +* Improved cross-platform functionality of CommandItem Version 0.6.0 -------------