From 0e1cfd2bdb7cbc468131f8dfb5dc7c3dbb0ca095 Mon Sep 17 00:00:00 2001 From: Florian Haas Date: Thu, 18 Jan 2024 12:08:22 +0100 Subject: [PATCH 1/2] Update Python versions in setup.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Overdue update to the Trove classifiers in setup.py: * Drop support for Python 2. * Drop support for Python 3.5 – 3.7. * Add support for Python 3.9 – 3.12. --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e8ccbe2..8ac7f6a 100755 --- a/setup.py +++ b/setup.py @@ -32,11 +32,11 @@ def package_data(pkg, root_list): 'Intended Audience :: Education', 'License :: OSI Approved :: GNU Affero General Public License v3', 'Operating System :: POSIX :: Linux', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Education :: Computer Aided Instruction (CAI)', 'Topic :: Education', ], From 83478d4916770adb58fd92681a7dbe2a06dab461 Mon Sep 17 00:00:00 2001 From: Florian Haas Date: Thu, 18 Jan 2024 12:06:22 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.3.4=20=E2=86=92=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d7a10fe..854f845 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.4 +current_version = 0.4.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P\d+))? serialize = {major}.{minor}.{patch}rc{rc}