From a0a6694ca567b2c728011d9b755a44816a3df8cf Mon Sep 17 00:00:00 2001 From: Karsten Deininger Date: Tue, 24 Jan 2023 09:28:11 +0100 Subject: [PATCH] Drop support for Python 3.7 --- .github/workflows/ci.yml | 1 - CHANGELOG | 7 +++++++ geolink_formatter/__init__.py | 2 +- setup.py | 3 +-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13abc768..3550feac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,6 @@ jobs: strategy: matrix: python-version: - - '3.7' - '3.8' - '3.9' - '3.10' diff --git a/CHANGELOG b/CHANGELOG index 3cdbe72d..4c5bf7c1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,13 @@ Changelog ========= +2.0.4 +----- + +Supported GEO-Link API versions: v1.0.0, v1.1.0, v1.1.1, v1.2.0, v1.2.1, v1.2.2 (default) + +- Drop support for Python 3.7 + 2.0.3 ----- diff --git a/geolink_formatter/__init__.py b/geolink_formatter/__init__.py index a3979bac..d55e07d9 100644 --- a/geolink_formatter/__init__.py +++ b/geolink_formatter/__init__.py @@ -6,7 +6,7 @@ from geolink_formatter.parser import XML -__version__ = '2.0.3' +__version__ = '2.0.4' class GeoLinkFormatter(object): diff --git a/setup.py b/setup.py index cc70760c..beb38373 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ ] setup(name='geolink_formatter', - version='2.0.3', + version='2.0.4', description='OEREBlex geoLink Formatter', license='BSD', long_description='{readme}\n\n{changelog}'.format(readme=readme, changelog=changelog), @@ -27,7 +27,6 @@ "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",