Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3"
services:
postgres:
image: kartoza/postgis:11.5-2.5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ on:
jobs:
# Run unit tests
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
qgis_version: [final-3_28_15, final-3_34_15, 3.40.4-noble] # We could eventually add more, e.g., latest
qgis_version: [3.40.15-noble, 3.44.7-noble]
env:
QGIS_TEST_VERSION: ${{ matrix.qgis_version }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions AppendFeaturesToLayer/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ name=Append Features to Layer
description=Processing plugin-based provider that adds an algorithm for appending/updating features to a vector layer
about=Algorithm to run a 'Load' in an ETL operation, allowing you to append or update features in a target layer based on features in a source layer
version=2.1.0
qgisMinimumVersion=2.99
qgisMaximumVersion=3.99
qgisMinimumVersion=3.99
qgisMaximumVersion=4.99
supportsQt6=yes
category=Processing
author=Germán Carrillo (GeoTux)
email=gcarrillo@linuxmail.org
Expand Down
3 changes: 1 addition & 2 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import qgis.core
from qgis.PyQt.sip import SIP_VERSION_STR
from qgis.PyQt.QtCore import QT_VERSION_STR
from qgis.PyQt.Qt import PYQT_VERSION_STR
from qgis.PyQt.QtCore import QT_VERSION_STR, PYQT_VERSION_STR
from qgis.core import Qgis

print("# # # # # # # # # # # # # # #")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_table_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _test_copy_all_string_to_json(self):

# Add a JSON field named text_value to match the source layer's (string)
# field name from which we'd like to get JSON values
output_layer.dataProvider().addAttributes([QgsField("text_value", QVariant.Map)])
output_layer.dataProvider().addAttributes([QgsField("text_value", QMetaType.Type.QVariantMap)])
output_layer.updateFields()

res = self.common._test_copy_all('source_table', output_layer, layer_path)
Expand Down