Philipp Hörist pushed to branch master at gajim / gajim


Commits:
14d951fd by Philipp Hörist at 2023-01-06T16:21:49+01:00
ci: Windows: Ignore Soup 2.4 in dependency check

- - - - -


1 changed file:

- win/misc/depcheck.py


Changes:

=====================================
win/misc/depcheck.py
=====================================
@@ -24,12 +24,17 @@
 logging.basicConfig(level='INFO', format='%(levelname)s: %(message)s')
 log = logging.getLogger()
 
+IGNORED_LIBS = [
+    ('Soup', '2.4')
+]
 
 def get_required_by_typelibs() -> set[str]:
     deps: set[str] = set()
     repo = GIRepository.Repository()
     for tl in os.listdir(repo.get_search_path()[0]):
         namespace, version = os.path.splitext(tl)[0].split('-', 1)
+        if (namespace, version) in IGNORED_LIBS:
+            continue
         repo.require(namespace, version, 0)
         lib = repo.get_shared_library(namespace)
         if lib:



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/14d951fd093b32b39c849464a0edfe44d67dc606

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/14d951fd093b32b39c849464a0edfe44d67dc606
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to