From 4545511f2b0be5c0126af8ded634397d2c5d01b9 Mon Sep 17 00:00:00 2001 From: SimonSAMPERE Date: Wed, 10 Apr 2024 17:54:10 +0200 Subject: [PATCH] #474 prepare 3.5.0 beta version releasing --- metadata.txt | 2 +- modules/api/auth.py | 6 +----- modules/layer/database.py | 3 +-- modules/quick_search.py | 1 - modules/results/cache.py | 1 - modules/results/display.py | 2 +- modules/search_form.py | 4 +--- modules/user_inform.py | 2 +- 8 files changed, 6 insertions(+), 15 deletions(-) diff --git a/metadata.txt b/metadata.txt index 1a2113da..92c9f698 100644 --- a/metadata.txt +++ b/metadata.txt @@ -24,7 +24,7 @@ repository=https://github.com/isogeo/isogeo-plugin-qgis # Recommended items: # Uncomment the following line and add your changelog: -changelog=- 3.4.0: see the dedicated GitHub release
- 3.3.1: see the dedicated GitHub release
- 3.3.0: see the dedicated GitHub release
- 3.2.0: see the dedicated GitHub release
- 3.1.1: see the dedicated GitHub release +changelog=- 3.5.0-beta: Preliminary experimental version
- 3.4.0: see the dedicated GitHub release
- 3.3.1: see the dedicated GitHub release
- 3.3.0: see the dedicated GitHub release
- 3.2.0: see the dedicated GitHub release
- 3.1.1: see the dedicated GitHub release # Tags are comma separated with spaces allowed tags=REST API,catalog,search,explore,webservices,metadata,open data,INSPIRE diff --git a/modules/api/auth.py b/modules/api/auth.py index 57495fed..6991b350 100644 --- a/modules/api/auth.py +++ b/modules/api/auth.py @@ -4,8 +4,6 @@ import logging import shutil import time -import json -from functools import partial from pathlib import Path # PyQGIS @@ -15,10 +13,8 @@ from qgis.PyQt.QtCore import ( QCoreApplication, QObject, - QSettings, QTranslator, - pyqtSignal, - qVersion, + pyqtSignal ) # UI class diff --git a/modules/layer/database.py b/modules/layer/database.py index b857d641..01c806f8 100644 --- a/modules/layer/database.py +++ b/modules/layer/database.py @@ -3,13 +3,12 @@ # Standard library import logging -import json from configparser import ConfigParser from pathlib import Path from os import environ # PyQT -from qgis.PyQt.QtCore import QSettings, Qt +from qgis.PyQt.QtCore import Qt from qgis.PyQt.QtGui import QIcon, QCursor from qgis.PyQt.QtWidgets import ( QComboBox, diff --git a/modules/quick_search.py b/modules/quick_search.py index 2a32e882..c237c5d2 100644 --- a/modules/quick_search.py +++ b/modules/quick_search.py @@ -3,7 +3,6 @@ # Standard library import logging -import json from pathlib import Path from functools import partial diff --git a/modules/results/cache.py b/modules/results/cache.py index 1a1df3c1..909d0f02 100644 --- a/modules/results/cache.py +++ b/modules/results/cache.py @@ -3,7 +3,6 @@ # Standard library import logging -import json from pathlib import Path # PyQGIS diff --git a/modules/results/display.py b/modules/results/display.py index f56e99fb..11389a46 100644 --- a/modules/results/display.py +++ b/modules/results/display.py @@ -7,7 +7,7 @@ from pathlib import Path # PyQT -from qgis.PyQt.QtCore import QSettings, QObject, pyqtSignal, Qt +from qgis.PyQt.QtCore import QObject, pyqtSignal, Qt from qgis.PyQt.QtGui import QIcon, QPixmap from qgis.PyQt.QtWidgets import QTableWidgetItem, QComboBox, QPushButton, QLabel diff --git a/modules/search_form.py b/modules/search_form.py index 2a81ced0..b57f417b 100644 --- a/modules/search_form.py +++ b/modules/search_form.py @@ -6,11 +6,9 @@ # PyQGIS from qgis.core import ( - Qgis, QgsProject, QgsCoordinateReferenceSystem, - QgsCoordinateTransform, - QgsMessageLog + QgsCoordinateTransform ) from qgis.utils import iface diff --git a/modules/user_inform.py b/modules/user_inform.py index 07fb4962..1e0f71df 100644 --- a/modules/user_inform.py +++ b/modules/user_inform.py @@ -6,7 +6,7 @@ import logging # PyQT -from qgis.PyQt.QtCore import QCoreApplication, Qt, QTranslator +from qgis.PyQt.QtCore import QCoreApplication, QTranslator # PyQGIS from qgis.gui import QgsMessageBar