summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Revert "pygi: Fix girepository deprecation warnings"pygobject-3-42Christoph Reiter2023-01-271-14/+0
| | | | | | This reverts commit b1c8f70fa9b148b5fed77a6a1cacdbcf0c733601. This was reverted on master too, see 4b421597d1885c725cbc
* pygi: Fix girepository deprecation warningsNirbheek Chauhan2022-08-021-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | These functions were deprecated in gobject-introspection 1.72 GI_CHECK_VERSION was added after gobject-introspection 1.58, and we require 1.56. ../gi/pygi-closure.c: In function ‘_pygi_invoke_closure_free’: ../gi/pygi-closure.c:635:5: warning: ‘g_callable_info_free_closure’ is deprecated: Use 'g_callable_info_destroy_closure' instead [-Wdeprecated-declarations] 635 | g_callable_info_free_closure (invoke_closure->info, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../gi/pygi-closure.h:22, from ../gi/pygi-closure.c:20: /usr/include/gobject-introspection-1.0/girffi.h:106:15: note: declared here 106 | void g_callable_info_free_closure (GICallableInfo *callable_info, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../gi/pygi-closure.c: In function ‘_pygi_make_native_closure’: ../gi/pygi-closure.c:674:9: warning: ‘g_callable_info_prepare_closure’ is deprecated: Use 'g_callable_info_create_closure' instead [-Wdeprecated-declarations] 674 | g_callable_info_prepare_closure (info, &closure->cif, _pygi_closure_handle, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/gobject-introspection-1.0/girffi.h:100:15: note: declared here 100 | ffi_closure * g_callable_info_prepare_closure (GICallableInfo *callable_info, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* examples: Fix flake8 whitespace errorNirbheek Chauhan2022-08-021-1/+1
| | | | | + python -m flake8 ./examples/demo/demos/combobox.py:212:24: E275 missing whitespace after keyword
* version bumpChristoph Reiter2022-07-163-3/+3
|
* release3.42.2Christoph Reiter2022-07-161-0/+14
|
* CI: test with Python 3.10Christoph Reiter2022-07-162-0/+6
|
* pyproject: bump versionChristoph Reiter2022-07-161-1/+1
|
* interface: Fix leak when overriding GInterfaceInfoThibault Saunier2022-04-244-3/+19
| | | | | | | | When the interface is being registered by PyGObject and again through an override, the first one is being leaks, free it at this point. We need to copy the GInterfaceInfo to set on the GType QData as we do not own it.
* setup.py: look up pycairo headers without importing the moduleChristoph Reiter2022-04-241-47/+31
| | | | | | | | | | | | | | | | | | Up until now pycairo provided a cairo.get_include() helper which could be used to find the required include directory matching the module, considering various scenarios. Starting with 3.8 this leads to problems on Windows since CPython on Windows will no longer use PATH for the DLL lookup and expects the library user to explicitely pass the directory where the cairo DLL can be found. In a build environment the user has no control over this though, so we have to find the include directory without loading/importing pycairo again. This now uses a combination of importlib.util.find_spec() for finding the module and importlib.metadata.distribution() for finding the package version. Hopefully this covers all cases.
* tests: Support CPython 3.8 on WindowsChristoph Reiter2022-04-241-0/+16
| | | | | | | | | | | | Python 3.8 no longer uses PATH for searching DLLs so we have to add them manually. Note that unlike PATH add_dll_directory() has no defined order, so if there are two same DLLs in PATH we might get a random one. This only makes sure that 'setup.py test' and 'pytest' continue working. If you include pygobject manually you have to call os.add_dll_directory() yourself with the location of the DLLs you ship.
* tests: Remove PyPy fixme that appears to be workingBenjamin Berg2022-04-241-1/+0
| | | | | The test_gvalue_gobject_ref_counts appears to be working just fine these days.
* hashtable: Fix refcount of key/value in error case when marshallingBenjamin Berg2022-04-241-2/+0
| | | | | | | PyList_GET_ITEM only returns a borrowed reference. In the unlikely event of an error converting the key or value, the reference would be unintentionally decremented. This could cause random failures later on (and was indeed causing the PyPy test to fail randomly later on).
* gi: Fix GArray length calculation for other item sizesBenjamin Berg2022-04-243-5/+28
|
* Fix type checkArjan Molenaar2022-04-241-2/+1
| | | | Check for required type, instead of negating invalid type.
* Instead of printing an error, raise an exceptionArjan Molenaar2022-04-242-3/+13
|
* Make warning a crtitical for unknown argument typesArjan Molenaar2022-04-241-1/+1
|
* Check object type before Python objects are createdArjan Molenaar2022-04-241-1/+5
|
* Add extra safeguard in gimoduleArjan Molenaar2022-04-241-1/+5
| | | | Why does a g_instance_init() function only handle GObjects?
* Call PyEval_InitThreads() with PyPy for Python 3.9Christoph Reiter2022-04-241-1/+2
| | | | | | In theory it should no longer be needed, but PyPy hasn't updated this part of their implementation yet, and not initing threads will lead to crashes due to missing GIL init.
* Rename GObject Introspection development branchEmmanuele Bassi2022-04-241-1/+1
| | | | | GObject Introspection renamed its default development branch to "main".
* version bumpChristoph Reiter2022-04-172-2/+2
|
* release3.42.1Christoph Reiter2022-04-171-0/+10
|
* Only create function _construct_target_list for GTK2/3Arjan Molenaar2022-04-011-14/+14
| | | | It's not used in GTK 4.
* Do not override Treeview.enable_model_drag_xx for GTK4Arjan Molenaar2022-04-012-11/+26
| | | | Those methods require a Gdk.ContentFormats object.
* tests: disable fatal-warnings fatal-criticals on WindowsChristoph Reiter2022-04-011-2/+4
| | | | | | If it triggers it creates a blocking GUI dialog without any helpful output. I can't reproduce the cause on my local machine, just on the CI server, so jsut disable this for now.
* CI: pass -Wno-error=deprecated-declarations for MSYS2Christoph Reiter2022-04-011-0/+3
| | | | | There are some glib deprecations that need fixing, but let's get CI green again first.
* Do not error out for unknown scopesEmmanuele Bassi2021-09-191-2/+4
| | | | | | If gobject-introspection adds a new scope that we do not handle, we should definitely not error out. Printing out a critical warning and asking to file an issue should be enough.
* Implement DynamicImporter.find_spec()Miro Hrončok2021-09-191-5/+10
| | | | | | | | | | | | | | | | | | | | | | On Python 3.10, the code raised an ImportWarning: ImportWarning: DynamicImporter.find_spec() not found; falling back to find_module() See https://docs.python.org/3.10/whatsnew/3.10.html#deprecated > Starting in this release, there will be a concerted effort to begin cleaning > up old import semantics that were kept for Python 2.7 compatibility. > Specifically, find_loader()/find_module() (superseded by find_spec()), > load_module() (superseded by exec_module()), module_repr() > (which the import system takes care of for you), > the __package__ attribute (superseded by __spec__.parent), > the __loader__ attribute (superseded by __spec__.loader), > and the __cached__ attribute (superseded by __spec__.cached) > will slowly be removed (as well as other classes and methods in importlib). > ImportWarning and/or DeprecationWarning will be raised as appropriate to help > identify code which needs updating during this transition. Fixes https://gitlab.gnome.org/GNOME/pygobject/-/issues/473
* gtk overrides: restore Gtk.ListStore.insert_with_valuesv with newer gtk4Christoph Reiter2021-09-193-3/+25
| | | | | | | | It got renamed in gtk 4.1.0, see https://gitlab.gnome.org/GNOME/gtk/-/commit/a1216599ff6b39bca3e936fbf To avoid an API break and make porting easier provide both versions for all users. Fixes #467
* tests: silence a deprecation warning with newer glibChristoph Reiter2021-09-191-2/+4
|
* version bumpChristoph Reiter2021-09-193-3/+3
|
* release3.42.0Christoph Reiter2021-09-194-3/+14
|
* `cairo-gobject-devel` is needed for FedoraAnatoli Babenia2021-08-231-1/+1
|
* Fix a couple of memory leaks in the testsDavid King2021-08-231-2/+4
| | | | | | Found by Coverity. https://bugzilla.redhat.com/show_bug.cgi?id=1938851
* Fix some small memory leaksDavid King2021-08-232-1/+5
| | | | | | Found by Coverity. https://bugzilla.redhat.com/show_bug.cgi?id=1938851
* ci: Limit depth of subprojects when cloningPhilip Withnall2021-06-074-0/+4
| | | | | | | | | Use the depth= argument from Meson 0.52 to limit the clone depth of subprojects to 1. This should make the CI images a little smaller, and reduce the bandwidth required to build them (although that’s not so important because it only happens once every few months). Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
* subprojects: Use GLib main branchPhilip Withnall2021-06-071-1/+1
| | | | | | | | GLib upstream has renamed its `master` branch to `main`. See https://gitlab.gnome.org/GNOME/glib/-/issues/2348. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
* Add poetry supportChristoph Reiter2021-04-302-0/+18
|
* docs: add an example of using a subclass in a UI definitionChris Mayo2021-04-301-0/+33
|
* docs: document Gtk.Template. Fixes #396Chris Mayo2021-04-302-0/+91
| | | | Examples derived from tests/test_gtk_template.py.
* Expose GObject.Object.run_dispose()Christoph Reiter2021-04-272-1/+19
| | | | | | | | | | Up until now this raised an exception "This method is currently unsupported.". With Gtk.Widget.destroy() gone in gtk4 and that method often being used to remove references to other objects and breaking cycles this is the next best thing on a lower level and should make porting a bit easier. Fixes #470
* meson: Bump minimum meson_version to 0.47.0wip/felder/meson-minimum-versionJean Felder2021-04-161-1/+1
| | | | | The meson_options.txt file uses the "feature" option which was introduced in 0.47.0.
* docs: Fix the link to the Terminator projectChris Mayo2021-03-301-1/+1
|
* Update NEWSChristoph Reiter2021-03-301-0/+7
|
* Fix regression in marshalling partial() objectsChristoph Reiter2021-03-303-3/+22
| | | | | | | | | | | | In a4880dbc4575fadc0e3 a special case for partial() was added to handle gtk4 template callbacks. This in turn broken normal usage of partial objects. To work around that add a special marker in the gtk template code for now until we find a better fix. Also adds a test so this doesn't happen again. Fixes #464
* tests: fix test with glib 2.68 re GLocalFileChristoph Reiter2021-03-301-1/+1
| | | | | | | Since 2.68 Gio.File.new_for_path("") returns a GDummyFile instead of a GLocalFile. We don't really care since we just want to test that there is a name despite the type not being in the gir, so just pass a potentially valid path instead.
* version bumpChristoph Reiter2021-03-192-2/+2
|
* release3.40.0Christoph Reiter2021-03-194-3/+15
|
* tests: Re-enable template tests for gtk4wip/jfelder/template-gtk4Jean Felder2020-12-061-3/+0
|
* tests: Do not use container api when gtk4 is usedJean Felder2020-12-061-6/+35
| | | | | GTK4 removed the Gtk.Container interface. All GTK4 widgets are now iterable.