Re: [QGIS-Developer] Debian 12 APT repository for QGIS 3.40

2025-06-13 Thread Etienne Trimaille via QGIS-Developer
Arf, indeed ! Sorry. I didn't notice that in the URL ! Thanks ! Le jeu. 12 juin 2025 à 16:34, Jürgen E. Fischer via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : > Hi Etienne, > > On Thu, 12. Jun 2025 at 14:01:30 +0200, Etienne Trimaille via > QGIS-Developer

Re: [QGIS-Developer] Experimental Qt6 Flatpak build available for Linux/Python devs (for updating plugins)

2025-06-13 Thread Etienne Trimaille via QGIS-Developer
Hi, Nice work, it works well, on Ubuntu Noble for me. Thanks ! Indeed, I got some issues trying to click on the link in Firefox and Chromium, because unsecure HTTP protocol with a "direct" link to a downloadable file (and maybe executable file as well ?) Le ven. 13 juin 2025 à 09:30, Richard Dui

[QGIS-Developer] Debian 12 APT repository for QGIS 3.40

2025-06-12 Thread Etienne Trimaille via QGIS-Developer
Hi all, On the main qgis.org website, for Debian, the list of repositories is written : https://www.qgis.org/resources/installation-guide/#repositories For instance for Debian 12 : https://qgis.org/debian-ltr But, it seems the packaging for QGIS 3.40 stopped at 3.40.3 : https://debian.qgis.org/d

Re: [QGIS-Developer] QGIS Python Versions

2025-04-11 Thread Etienne Trimaille via QGIS-Developer
Python 3.10 minimal version was in PR : https://github.com/qgis/QGIS/pull/56499 I think it has been closed because the version on MacOS is kind of locked for now. (not sure about the status now), if I remember correctly. Le mer. 9 avr. 2025 à 19:05, Greg Troxel via QGIS-Developer < qgis-developer

Re: [QGIS-Developer] How to set QgsSettings to show up in "new settings tree widget"

2025-04-04 Thread Etienne Trimaille via QGIS-Developer
Hi, Did you find something related to plugin settings ? I'm fine to update the docs if there are some hints. https://docs.qgis.org/3.40/en/docs/pyqgis_developer_cookbook/settings.html Or maybe better in the PyQGIS doc straight ? Le sam. 28 déc. 2024 à 10:06, Richard Duivenvoorde via QGIS-Develop

Re: [QGIS-Developer] native:package processing alg code

2024-10-14 Thread Etienne Trimaille via QGIS-Developer
Hi, All "native" algorithms are in the same folder "src/analysis/processing/" : https://github.com/qgis/QGIS/blob/67d43327388122e89bad007f6d1d4f8df0acc407/src/analysis/processing/qgsalgorithmpackage.cpp#L30 Regards, Le lun. 14 oct. 2024 à 11:11, PIERRE Sylvain via QGIS-Developer < qgis-develope

Re: [QGIS-Developer] qt6-compatible plugins status

2024-08-22 Thread Etienne Trimaille via QGIS-Developer
Hi, Using the metadata flag on github.com will give you a "quick" overview of plugins : https://github.com/search?q=supportsQt6&type=code But this excludes plugins which are hosted on another website. Side note, is there a readme to know how to compile with Qt6 ? I saw the flag when compiling, bu

Re: [QGIS-Developer] Official PSC call on pull request policies

2024-03-05 Thread Etienne Trimaille via QGIS-Developer
Hi, Le mer. 28 févr. 2024 à 08:32, Julien Cabieces via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : > - create a branch > - add your branch name here [0] in a special commit that you will remove > once your work is ready to create a PR > - Push, the CI result appear in https://githu

Re: [QGIS-Developer] Python version in 3.28.x CVEs

2024-02-26 Thread Etienne Trimaille via QGIS-Developer
Hi, Le lun. 26 févr. 2024 à 14:47, Samer Kaluf via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : > > > We run Qgis 3.28.5 LTR on some computers and Microsoft Security Center > seems to be complaining > > about the presence of Python.exe version 3.8.5.0 included with 3.28.x LTR > Qgis

Re: [QGIS-Developer] LAStools QGIS plugin, transfer of ownership

2023-10-27 Thread Etienne Trimaille via QGIS-Developer
Hi, Done, it should be alright now ? Regards, Le jeu. 26 oct. 2023 à 23:42, Silke Kämmerer via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : > Hi there, > > > > I hope this email finds you well. I'm contacting you because we need help > with our LAStools QGIS plugin: > > > > https:

[QGIS-Developer] Python minimum version on QGIS 3.33

2023-08-02 Thread Etienne Trimaille via QGIS-Developer
Hi devs, The current Python minimum version for QGIS 3.33 is currently Python 3.7 (2018) Do you think it's possible to update it for QGIS 3.34 (the next LTR) or would it be possible only later ? Debian Bullseye is providing Python 3.9 (2020). ___ QGIS-

Re: [QGIS-Developer] It is possible to protect qgisserver's wms service using authentication?

2023-07-10 Thread Etienne Trimaille via QGIS-Developer
Hi, It's something you can do in front of QGIS server. QGIS server is not connected to any ACL system by default. Or you can write a QGIS server plugin to add the authentication : https://docs.qgis.org/3.28/en/docs/pyqgis_developer_cookbook/server.html#access-control-filters Or some open source

Re: [QGIS-Developer] QGIS Python scripts in a Docker container

2023-07-05 Thread Etienne Trimaille via QGIS-Developer
Hi, I'm not answering straight the question, but you can have a look to the Dockerfile on our working base image : https://github.com/3liz/docker-qgis-platform/ As an example : ➜ cat script.py import qgis.core print(qgis.core.Qgis.QGIS_VERSION) ➜ docker run -it -v $PWD:/scripts 3liz/qgis-platfo

Re: [QGIS-Developer] Profiler times in Python

2023-05-05 Thread Etienne Trimaille via QGIS-Developer
One line I know, maybe this is enough : >>> from qgis.utils import plugin_times >>> plugin_times It's not using the profiler. Values are different from the Profiler, after a quick look... Le ven. 5 mai 2023 à 10:21, Michel Stuyts via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : >

Re: [QGIS-Developer] Multiple python scripts in python console?

2023-05-04 Thread Etienne Trimaille via QGIS-Developer
> For example, a newly defined function on the class was > unknown in script_1. Might be a bug, but I'm not even sure. Well, for me it works without any issue. But you need to re-execute the script_2.py in the Python console, it will refresh the class definition in the Python console context then

Re: [QGIS-Developer] Multiple python scripts in python console?

2023-05-04 Thread Etienne Trimaille via QGIS-Developer
If you are talking about the simple Python console panel, and loading Python files from there, then you can skip the " from .script_2 import TestClass". If you notice, when you launch the script_2.py, you have a generated line similar to : exec(Path('/tmp/tmp5g244g4w.py').read_text()) So it's rea

Re: [QGIS-Developer] Backward compatibility for style in project files between QGIS versions

2023-05-03 Thread Etienne Trimaille via QGIS-Developer
This PR was about the symbology, but we noticed there are many other parts of the QGS file which are not backward compatible. If I'm not wrong : - a WMS shortname on a group made with QGIS 3.20 can not be read with QGIS 3.18. - field server configuration made with QGIS 3.16 can not be read with QGI

Re: [QGIS-Developer] Customizing Layer Panel

2023-04-27 Thread Etienne Trimaille via QGIS-Developer
You should have a look at the QAction documentation : https://doc.qt.io/qt-5/qaction.html The first parameter, you can give a QIcon. For some predefined icon in QGIS, you can look to https://pyqgis-icons-cheatsheet.geotribu.fr/ Le jeu. 27 avr. 2023 à 13:15, Giulio Fattori via QGIS-Developer < qgis

Re: [QGIS-Developer] Approval and Maintainer-Change of ORSTools-Plugin

2023-04-04 Thread Etienne Trimaille via QGIS-Developer
Hi, Are you able to connect on the website ? https://plugins.qgis.org Go in your plugin page, "Manage" tab, then "Edit", at the bottom, you can edit the list of owners. Le mar. 4 avr. 2023 à 15:27, Jakob Schnell via QGIS-Developer < qgis-developer@lists.osgeo.org> a écrit : > Dear QGIS-devs, > >

Re: [QGIS-Developer] Issue with qgis Docker images starting from qgis:final-3_22_10

2022-11-09 Thread Etienne Trimaille via QGIS-Developer
located > in /usr/share/qgis/python/plugins but now in /qgis/python/plugins , this > may have caused the issue. > > Regards, > > > Sergio > > El mié, 9 nov 2022 a la(s) 08:19, Etienne Trimaille via QGIS-Developer ( > qgis-developer@lists.osgeo.org) escribió: > >&

Re: [QGIS-Developer] Issue with qgis Docker images starting from qgis:final-3_22_10

2022-11-09 Thread Etienne Trimaille via QGIS-Developer
Thanks for raising this issue. I can also confirm the regression in unit testing plugins with QGIS 3.22 with QGIS docker images. With the tag qgis/qgis:final-3_22_9 and different branches such as 3.16, 3.28, master, everything works fine. Starting with qgis/qgis:final-3_22_10, tests are not loaded

Re: [QGIS-Developer] Tests & Merge Request

2022-09-12 Thread Etienne Trimaille via QGIS-Developer
To run a specific test, have a look to the README.md https://github.com/qgis/QGIS/blob/master/tests/README.md#running-the-tests "-R" For quite a few files, you will find the helper https://github.com/qgis/QGIS/blob/master/tests/src/python/test_qgspallabeling_server.py#L4 Same, quite a few tests w