File: __init__.py

package info (click to toggle)
meld 3.22.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,784 kB
  • sloc: python: 14,675; xml: 317; sh: 82; makefile: 26
file content (16 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

TEST_REQUIRES = {
    "GLib": "2.0",
    "Gtk": "3.0",
    "GtkSource": "4",
}


def enforce_requires():
    import gi

    for namespace, version in TEST_REQUIRES.items():
        gi.require_version(namespace, version)


enforce_requires()