compatibility 2.2.0__tar.gz → 2.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {compatibility-2.2.0 → compatibility-2.3.0}/PKG-INFO +15 -12
  2. {compatibility-2.2.0 → compatibility-2.3.0}/README.md +9 -7
  3. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/__init__.py +1 -1
  4. compatibility-2.3.0/compatibility/__main__.py +33 -0
  5. compatibility-2.2.0/compatibility/__main__.py → compatibility-2.3.0/compatibility/core.py +13 -0
  6. compatibility-2.3.0/compatibility/locales/compatibility.pot +179 -0
  7. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/de/LC_MESSAGES/compatibility.po +37 -37
  8. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/es/LC_MESSAGES/compatibility.po +37 -37
  9. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/fr/LC_MESSAGES/compatibility.po +37 -37
  10. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/nl/LC_MESSAGES/compatibility.po +37 -37
  11. {compatibility-2.2.0 → compatibility-2.3.0}/pyproject.toml +7 -6
  12. {compatibility-2.2.0 → compatibility-2.3.0}/LICENSE +0 -0
  13. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/err.py +0 -0
  14. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/de/LC_MESSAGES/compatibility.mo +0 -0
  15. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/es/LC_MESSAGES/compatibility.mo +0 -0
  16. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/fr/LC_MESSAGES/compatibility.mo +0 -0
  17. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/locales/nl/LC_MESSAGES/compatibility.mo +0 -0
  18. {compatibility-2.2.0 → compatibility-2.3.0}/compatibility/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: compatibility
3
- Version: 2.2.0
3
+ Version: 2.3.0
4
4
  Summary: A library that checks whether the running version of Python is compatible and tested. Remind the user to check for updates of the library.
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Programming Language :: Python :: 3.15
17
18
  Classifier: Operating System :: OS Independent
18
19
  Classifier: Operating System :: POSIX :: Linux
19
20
  Classifier: Operating System :: Microsoft :: Windows
@@ -26,11 +27,11 @@ Classifier: Topic :: Software Development :: Quality Assurance
26
27
  Classifier: Topic :: Utilities
27
28
  Classifier: Typing :: Typed
28
29
  Provides-Extra: dev
29
- Requires-Dist: coverage[toml] (>=7.14.1,<8) ; extra == "dev"
30
- Requires-Dist: mypy (>=2.1.0,<3) ; extra == "dev"
31
- Requires-Dist: pytest (>=9.0.3,<10) ; extra == "dev"
30
+ Requires-Dist: coverage[toml] (>=7.16.1,<8) ; extra == "dev"
31
+ Requires-Dist: mypy (>=2.3.1,<3) ; extra == "dev"
32
+ Requires-Dist: pytest (>=9.1.1,<10) ; extra == "dev"
32
33
  Requires-Dist: pytest-cov (>=7.1.0,<8) ; extra == "dev"
33
- Requires-Dist: ruff (>=0.15.16,<0.16) ; extra == "dev"
34
+ Requires-Dist: ruff (>=0.16.8,<0.17) ; extra == "dev"
34
35
  Project-URL: Bug Tracker, https://github.com/RuedigerVoigt/compatibility/issues
35
36
  Project-URL: Changelog, https://github.com/RuedigerVoigt/compatibility/blob/main/CHANGELOG.md
36
37
  Project-URL: Documentation, https://github.com/RuedigerVoigt/compatibility
@@ -41,7 +42,7 @@ Description-Content-Type: text/markdown
41
42
  ![Supported Python Versions](https://img.shields.io/pypi/pyversions/compatibility)
42
43
  ![pypi version](https://img.shields.io/pypi/v/compatibility)
43
44
  ![Last commit](https://img.shields.io/github/last-commit/RuedigerVoigt/compatibility)
44
- [![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)](https://www.ruediger-voigt.eu/coverage/compatibility/index.html)
45
+ ![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)
45
46
  [![Downloads](https://pepy.tech/badge/compatibility/month)](https://pepy.tech/project/compatibility)
46
47
 
47
48
  # Python Compatibility Checker for Package Authors
@@ -96,7 +97,7 @@ All messages are available in English and German (plus AI-translated French, Dut
96
97
  - **Zero Dependencies**: Pure Python stdlib - no external packages required
97
98
  - **Type Safe**: Full type hints ([PEP 484](https://www.python.org/dev/peps/pep-0484/)) for excellent IDE integration
98
99
  - **Well Tested**: 100% coverage (statements and branches), enforced in CI
99
- - **Python 3.10+**: Supports Python 3.10 through 3.14. Python 3.15 is already tested against its betas and will be officially supported once it is released.
100
+ - **Python 3.10+**: Supports Python 3.10 through 3.15.
100
101
 
101
102
  ## Installation
102
103
 
@@ -134,7 +135,7 @@ class MyPackage:
134
135
  python_version_support={
135
136
  'min_version': '3.10',
136
137
  'incompatible_versions': [],
137
- 'max_tested_version': '3.14'
138
+ 'max_tested_version': '3.15'
138
139
  }
139
140
  )
140
141
  ```
@@ -159,7 +160,7 @@ class MyAdvancedPackage:
159
160
  python_version_support={
160
161
  'min_version': '3.10',
161
162
  'incompatible_versions': ['3.9'],
162
- 'max_tested_version': '3.14'
163
+ 'max_tested_version': '3.15'
163
164
  },
164
165
  nag_over_update={
165
166
  'nag_days_after_release': 90, # Start reminding after 90 days
@@ -223,7 +224,7 @@ class Salted:
223
224
  python_version_support={
224
225
  'min_version': '3.10',
225
226
  'incompatible_versions': [],
226
- 'max_tested_version': '3.14'},
227
+ 'max_tested_version': '3.15'},
227
228
  nag_over_update={
228
229
  'nag_days_after_release': 30,
229
230
  'nag_in_hundred': 50},
@@ -232,7 +233,7 @@ class Salted:
232
233
  'full': {'Linux', 'MacOS', 'Windows'}
233
234
  })
234
235
  ```
235
- These settings ensure the package runs on Python 3.10 or higher, with testing confirmed through Python 3.14.
236
+ These settings ensure the package runs on Python 3.10 or higher, with testing confirmed through Python 3.15.
236
237
  Salted in that specific version is a relatively young package that will receive frequent updates. So beginning a month after the release this will nag the user over looking for an update every second time - provided the user activated logging.
237
238
 
238
239
  ## Parameters
@@ -341,7 +342,7 @@ DEBUG:compatibility:my_package fully supports Linux.
341
342
  INFO:compatibility:You are using my_package 1.0.0 (released: 2025-01-01)
342
343
  INFO:compatibility:Your version of my_package was released 120 days ago. Please check for updates.
343
344
  WARNING:compatibility:my_package has only partial support on Windows.
344
- WARNING:compatibility:You are running Python 3.15.final, but your version of my_package is only tested up to 3.14. Please check for updates.
345
+ WARNING:compatibility:You are running Python 3.16.final, but your version of my_package is only tested up to 3.15. Please check for updates.
345
346
  ERROR:compatibility:This version of my_package is incompatible with Windows!
346
347
  ```
347
348
 
@@ -370,6 +371,8 @@ Each available language has one of the following quality levels:
370
371
 
371
372
  The AI-translated languages are marked as such in the message catalog (`.po`) header until a native speaker has reviewed them. Corrections and reviews from native speakers are very welcome.
372
373
 
374
+ To add a new language, start from the template `compatibility/locales/compatibility.pot`, which lists every message.
375
+
373
376
  Set `language_messages='auto'` to follow the user's environment locale (`LANGUAGE`/`LC_ALL`/`LC_MESSAGES`/`LANG`); if no matching catalog is available, messages fall back to English.
374
377
 
375
378
  ## Exceptions
@@ -1,7 +1,7 @@
1
1
  ![Supported Python Versions](https://img.shields.io/pypi/pyversions/compatibility)
2
2
  ![pypi version](https://img.shields.io/pypi/v/compatibility)
3
3
  ![Last commit](https://img.shields.io/github/last-commit/RuedigerVoigt/compatibility)
4
- [![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)](https://www.ruediger-voigt.eu/coverage/compatibility/index.html)
4
+ ![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)
5
5
  [![Downloads](https://pepy.tech/badge/compatibility/month)](https://pepy.tech/project/compatibility)
6
6
 
7
7
  # Python Compatibility Checker for Package Authors
@@ -56,7 +56,7 @@ All messages are available in English and German (plus AI-translated French, Dut
56
56
  - **Zero Dependencies**: Pure Python stdlib - no external packages required
57
57
  - **Type Safe**: Full type hints ([PEP 484](https://www.python.org/dev/peps/pep-0484/)) for excellent IDE integration
58
58
  - **Well Tested**: 100% coverage (statements and branches), enforced in CI
59
- - **Python 3.10+**: Supports Python 3.10 through 3.14. Python 3.15 is already tested against its betas and will be officially supported once it is released.
59
+ - **Python 3.10+**: Supports Python 3.10 through 3.15.
60
60
 
61
61
  ## Installation
62
62
 
@@ -94,7 +94,7 @@ class MyPackage:
94
94
  python_version_support={
95
95
  'min_version': '3.10',
96
96
  'incompatible_versions': [],
97
- 'max_tested_version': '3.14'
97
+ 'max_tested_version': '3.15'
98
98
  }
99
99
  )
100
100
  ```
@@ -119,7 +119,7 @@ class MyAdvancedPackage:
119
119
  python_version_support={
120
120
  'min_version': '3.10',
121
121
  'incompatible_versions': ['3.9'],
122
- 'max_tested_version': '3.14'
122
+ 'max_tested_version': '3.15'
123
123
  },
124
124
  nag_over_update={
125
125
  'nag_days_after_release': 90, # Start reminding after 90 days
@@ -183,7 +183,7 @@ class Salted:
183
183
  python_version_support={
184
184
  'min_version': '3.10',
185
185
  'incompatible_versions': [],
186
- 'max_tested_version': '3.14'},
186
+ 'max_tested_version': '3.15'},
187
187
  nag_over_update={
188
188
  'nag_days_after_release': 30,
189
189
  'nag_in_hundred': 50},
@@ -192,7 +192,7 @@ class Salted:
192
192
  'full': {'Linux', 'MacOS', 'Windows'}
193
193
  })
194
194
  ```
195
- These settings ensure the package runs on Python 3.10 or higher, with testing confirmed through Python 3.14.
195
+ These settings ensure the package runs on Python 3.10 or higher, with testing confirmed through Python 3.15.
196
196
  Salted in that specific version is a relatively young package that will receive frequent updates. So beginning a month after the release this will nag the user over looking for an update every second time - provided the user activated logging.
197
197
 
198
198
  ## Parameters
@@ -301,7 +301,7 @@ DEBUG:compatibility:my_package fully supports Linux.
301
301
  INFO:compatibility:You are using my_package 1.0.0 (released: 2025-01-01)
302
302
  INFO:compatibility:Your version of my_package was released 120 days ago. Please check for updates.
303
303
  WARNING:compatibility:my_package has only partial support on Windows.
304
- WARNING:compatibility:You are running Python 3.15.final, but your version of my_package is only tested up to 3.14. Please check for updates.
304
+ WARNING:compatibility:You are running Python 3.16.final, but your version of my_package is only tested up to 3.15. Please check for updates.
305
305
  ERROR:compatibility:This version of my_package is incompatible with Windows!
306
306
  ```
307
307
 
@@ -330,6 +330,8 @@ Each available language has one of the following quality levels:
330
330
 
331
331
  The AI-translated languages are marked as such in the message catalog (`.po`) header until a native speaker has reviewed them. Corrections and reviews from native speakers are very welcome.
332
332
 
333
+ To add a new language, start from the template `compatibility/locales/compatibility.pot`, which lists every message.
334
+
333
335
  Set `language_messages='auto'` to follow the user's environment locale (`LANGUAGE`/`LC_ALL`/`LC_MESSAGES`/`LANG`); if no matching catalog is available, messages fall back to English.
334
336
 
335
337
  ## Exceptions
@@ -5,7 +5,7 @@ tested. Remind the user to check for updates of the library.
5
5
 
6
6
  import importlib.metadata
7
7
 
8
- from compatibility.__main__ import (
8
+ from compatibility.core import (
9
9
  Check,
10
10
  NagOverUpdate,
11
11
  PythonVersionSupport,
@@ -0,0 +1,33 @@
1
+ """
2
+ Entry point for `python -m compatibility` and a deprecated import alias.
3
+
4
+ The library code lives in `compatibility.core`. This module used to hold it,
5
+ so its public names are re-exported here to keep old imports such as
6
+ `from compatibility.__main__ import Check` working. Importing this module
7
+ emits a DeprecationWarning; import from `compatibility` instead.
8
+
9
+ Copyright (c) 2021-2026 Rüdiger Voigt and contributors
10
+ Released under the Apache License 2.0
11
+ """
12
+
13
+ import warnings
14
+
15
+ from compatibility import NAME, __version__
16
+ from compatibility.core import ( # noqa: F401 (re-exported for old imports)
17
+ SUPPORTED_LANGUAGES,
18
+ Check,
19
+ NagOverUpdate,
20
+ PythonVersionSupport,
21
+ SystemSupport,
22
+ logger,
23
+ )
24
+
25
+ if __name__ == '__main__':
26
+ print(f'{NAME} {__version__}')
27
+ else:
28
+ warnings.warn(
29
+ 'Importing from compatibility.__main__ is deprecated and will be '
30
+ 'removed in version 3. Import from compatibility instead '
31
+ '(e.g. "from compatibility import Check").',
32
+ DeprecationWarning,
33
+ stacklevel=2)
@@ -110,6 +110,8 @@ class Check:
110
110
  (log a warning and continue), or 'ignore' (continue silently).
111
111
 
112
112
  Raises:
113
+ TypeError: If package_name, package_version, or
114
+ language_messages is not a string.
113
115
  ValueError: If package_name or package_version is empty, if
114
116
  language_messages or on_incompatible is invalid, or if
115
117
  parameters are malformed.
@@ -120,6 +122,17 @@ class Check:
120
122
  contradictory entries, or if min_version is higher than
121
123
  max_tested_version.
122
124
  """
125
+ # Guard clause: .strip() below only works on strings, so reject other
126
+ # types with a clear error instead of a raw AttributeError. This runs
127
+ # before the translation is set up (which depends on
128
+ # language_messages), so the message is not localized.
129
+ for name, value in (('package_name', package_name),
130
+ ('package_version', package_version),
131
+ ('language_messages', language_messages)):
132
+ if not isinstance(value, str):
133
+ raise TypeError(
134
+ f'Parameter {name} must be a string, '
135
+ f'not {type(value).__name__}.')
123
136
  self.package_name = package_name.strip()
124
137
  self.package_version = package_version.strip()
125
138
  self.language_messages = language_messages.strip()
@@ -0,0 +1,179 @@
1
+ # Translation template for the compatibility package.
2
+ # Copyright (c) 2021-2026 Rüdiger Voigt and contributors
3
+ # This file is distributed under the same license as the compatibility package.
4
+ # Generated by `python compile_translations.py --extract`. Do not edit by hand.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: compatibility\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+
19
+ #: compatibility/core.py:191
20
+ msgid "Non-existing or incomplete date!"
21
+ msgstr ""
22
+
23
+ #: compatibility/core.py:194
24
+ msgid "date_to_coerce must be either string or datetime.date"
25
+ msgstr ""
26
+
27
+ #: compatibility/core.py:208
28
+ #, python-format
29
+ msgid "The release_date %s is more than %s days in the future. Please check it is correct."
30
+ msgstr ""
31
+
32
+ #: compatibility/core.py:212
33
+ #, python-format
34
+ msgid "The release_date %s is more than %s years in the past. Please check it is correct."
35
+ msgstr ""
36
+
37
+ #: compatibility/core.py:229
38
+ msgid "Missing package name!"
39
+ msgstr ""
40
+
41
+ #: compatibility/core.py:231
42
+ msgid "Missing package version!"
43
+ msgstr ""
44
+
45
+ #: compatibility/core.py:236
46
+ msgid "Invalid value for language_messages!"
47
+ msgstr ""
48
+
49
+ #: compatibility/core.py:239
50
+ msgid "Invalid value for on_incompatible!"
51
+ msgstr ""
52
+
53
+ #: compatibility/core.py:269
54
+ msgid "Parameter python_version_support must be a dictionary"
55
+ msgstr ""
56
+
57
+ #: compatibility/core.py:311
58
+ msgid "Parameter python_version_support incomplete!"
59
+ msgstr ""
60
+
61
+ #: compatibility/core.py:314
62
+ msgid "Parameter python_version_support: too many keys!"
63
+ msgstr ""
64
+
65
+ #: compatibility/core.py:322
66
+ msgid "Parameter python_version_support contains unknown keys."
67
+ msgstr ""
68
+
69
+ #: compatibility/core.py:329
70
+ msgid "Value for key min_version is incorrect."
71
+ msgstr ""
72
+
73
+ #: compatibility/core.py:333
74
+ msgid "Value for key max_tested_version incorrect."
75
+ msgstr ""
76
+
77
+ #: compatibility/core.py:339
78
+ msgid "Value for key incompatible_versions must be a list."
79
+ msgstr ""
80
+
81
+ #: compatibility/core.py:343
82
+ msgid "Some string in incompatible_versions cannot be parsed."
83
+ msgstr ""
84
+
85
+ #: compatibility/core.py:351
86
+ #, python-format
87
+ msgid "min_version (%(min)s) is higher than max_tested_version (%(max)s)."
88
+ msgstr ""
89
+
90
+ #: compatibility/core.py:382
91
+ #, python-format
92
+ msgid "You use %(running)s, but need at least %(required)s to run %(package)s."
93
+ msgstr ""
94
+
95
+ #: compatibility/core.py:391
96
+ #, python-format
97
+ msgid "Your version of Python is not compatible with this version of %(package)s. Please check for updates."
98
+ msgstr ""
99
+
100
+ #: compatibility/core.py:414
101
+ #, python-format
102
+ msgid "You are running Python %s, but your version of %s is only tested up to %s. Please check for updates."
103
+ msgstr ""
104
+
105
+ #: compatibility/core.py:444
106
+ msgid "Parameter system_support must be a dictionary"
107
+ msgstr ""
108
+
109
+ #: compatibility/core.py:471
110
+ msgid "Unknown key in dictionary system_support"
111
+ msgstr ""
112
+
113
+ #: compatibility/core.py:473
114
+ #, python-format
115
+ msgid "Use a set to hold values for %s."
116
+ msgstr ""
117
+
118
+ #: compatibility/core.py:477
119
+ #, python-format
120
+ msgid "Invalid system in %s. Allowed: %s"
121
+ msgstr ""
122
+
123
+ #: compatibility/core.py:494
124
+ msgid "Contradiction: System cannot simultaneously be fully AND only partially supported."
125
+ msgstr ""
126
+
127
+ #: compatibility/core.py:500
128
+ msgid "Contradiction: System cannot have full support AND be incompatible!"
129
+ msgstr ""
130
+
131
+ #: compatibility/core.py:516
132
+ #, python-format
133
+ msgid "%s fully supports %s."
134
+ msgstr ""
135
+
136
+ #: compatibility/core.py:520
137
+ #, python-format
138
+ msgid "%s has only partial support on %s."
139
+ msgstr ""
140
+
141
+ #: compatibility/core.py:525
142
+ #, python-format
143
+ msgid "This version of %s is incompatible with %s!"
144
+ msgstr ""
145
+
146
+ #: compatibility/core.py:530
147
+ #, python-format
148
+ msgid "%s's support for %s is unknown!"
149
+ msgstr ""
150
+
151
+ #: compatibility/core.py:561
152
+ #, python-format
153
+ msgid "You are using %(package)s %(version)s (released: %(date)s)"
154
+ msgstr ""
155
+
156
+ #: compatibility/core.py:586
157
+ msgid "Parameter nag_over_update must be a dictionary"
158
+ msgstr ""
159
+
160
+ #: compatibility/core.py:597
161
+ #, python-format
162
+ msgid "Your version of %s was released %s days ago. Please check for updates."
163
+ msgstr ""
164
+
165
+ #: compatibility/core.py:620
166
+ msgid "A key in nag_over_update is missing."
167
+ msgstr ""
168
+
169
+ #: compatibility/core.py:630
170
+ msgid "Some key in nag_over_update has wrong type!"
171
+ msgstr ""
172
+
173
+ #: compatibility/core.py:632
174
+ msgid "nag_days_after_release must not be negative."
175
+ msgstr ""
176
+
177
+ #: compatibility/core.py:634
178
+ msgid "nag_in_hundred must be int between 0 and 100."
179
+ msgstr ""
@@ -16,150 +16,150 @@ msgstr ""
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
19
- #: compatibility/__main__.py:153
19
+ #: compatibility/core.py:153
20
20
  msgid "Non-existing or incomplete date!"
21
21
  msgstr "Nicht existierendes oder unvollständiges Datum!"
22
22
 
23
- #: compatibility/__main__.py:156
23
+ #: compatibility/core.py:156
24
24
  msgid "date_to_coerce must be either string or datetime.date"
25
25
  msgstr "date_to_coerce muss entweder string oder datetime.date sein"
26
26
 
27
- #: compatibility/__main__.py:171
27
+ #: compatibility/core.py:171
28
28
  msgid "Missing package name!"
29
29
  msgstr "Fehlender Paketname!"
30
30
 
31
- #: compatibility/__main__.py:173
31
+ #: compatibility/core.py:173
32
32
  msgid "Missing package version!"
33
33
  msgstr "Fehlende Paketversion!"
34
34
 
35
- #: compatibility/__main__.py:176
35
+ #: compatibility/core.py:176
36
36
  msgid "Invalid value for language_messages!"
37
37
  msgstr "Ungültiger Wert für language_messages!"
38
38
 
39
- #: compatibility/__main__.py:179
39
+ #: compatibility/core.py:179
40
40
  msgid "Invalid value for on_incompatible!"
41
41
  msgstr "Ungültiger Wert für on_incompatible!"
42
42
 
43
- #: compatibility/__main__.py:242
43
+ #: compatibility/core.py:242
44
44
  msgid "Parameter python_version_support incomplete!"
45
45
  msgstr "Parameter python_version_support unvollständig!"
46
46
 
47
- #: compatibility/__main__.py:245
47
+ #: compatibility/core.py:245
48
48
  msgid "Parameter python_version_support: too many keys!"
49
49
  msgstr "Parameter python_version_support: zu viele Schlüssel!"
50
50
 
51
- #: compatibility/__main__.py:253
51
+ #: compatibility/core.py:253
52
52
  msgid "Parameter python_version_support contains unknown keys."
53
53
  msgstr "Parameter python_version_support enthält unbekannte Schlüssel."
54
54
 
55
- #: compatibility/__main__.py:260
55
+ #: compatibility/core.py:260
56
56
  msgid "Value for key min_version is incorrect."
57
57
  msgstr "Wert für Schlüssel min_version ist inkorrekt."
58
58
 
59
- #: compatibility/__main__.py:264
59
+ #: compatibility/core.py:264
60
60
  msgid "Value for key max_tested_version incorrect."
61
61
  msgstr "Wert für Schlüssel max_tested_version ist inkorrekt."
62
62
 
63
- #: compatibility/__main__.py:326
63
+ #: compatibility/core.py:326
64
64
  msgid "Value for key incompatible_versions must be a list."
65
65
  msgstr "Wert für Schlüssel incompatible_versions muss eine Liste sein."
66
66
 
67
- #: compatibility/__main__.py:294
67
+ #: compatibility/core.py:294
68
68
  msgid "min_version (%(min)s) is higher than max_tested_version (%(max)s)."
69
69
  msgstr "min_version (%(min)s) ist höher als max_tested_version (%(max)s)."
70
70
 
71
- #: compatibility/__main__.py:268
71
+ #: compatibility/core.py:268
72
72
  msgid "Some string in incompatible_versions cannot be parsed."
73
73
  msgstr "Eine Zeichenkette in incompatible_versions kann nicht geparst werden."
74
74
 
75
- #: compatibility/__main__.py:300
75
+ #: compatibility/core.py:300
76
76
  msgid "You use %(running)s, but need at least %(required)s to run %(package)s."
77
77
  msgstr "Sie verwenden %(running)s, benötigen aber mindestens %(required)s, um %(package)s auszuführen."
78
78
 
79
- #: compatibility/__main__.py:309
79
+ #: compatibility/core.py:309
80
80
  msgid "Your version of Python is not compatible with this version of %(package)s. Please check for updates."
81
81
  msgstr "Ihre Python-Version ist nicht kompatibel mit dieser Version von %(package)s. Bitte prüfen Sie auf Updates."
82
82
 
83
- #: compatibility/__main__.py:332
83
+ #: compatibility/core.py:332
84
84
  msgid "You are running Python %s, but your version of %s is only tested up to %s. Please check for updates."
85
85
  msgstr "Sie verwenden Python %s, aber Ihre Version von %s ist nur bis %s getestet. Bitte prüfen Sie auf Updates."
86
86
 
87
- #: compatibility/__main__.py:362
87
+ #: compatibility/core.py:362
88
88
  msgid "Parameter system_support must be a dictionary"
89
89
  msgstr "Parameter system_support muss ein Dictionary sein"
90
90
 
91
- #: compatibility/__main__.py:389
91
+ #: compatibility/core.py:389
92
92
  msgid "Unknown key in dictionary system_support"
93
93
  msgstr "Unbekannter Schlüssel im Dictionary system_support"
94
94
 
95
- #: compatibility/__main__.py:391
95
+ #: compatibility/core.py:391
96
96
  msgid "Use a set to hold values for %s."
97
97
  msgstr "Verwenden Sie ein Set für die Werte von %s."
98
98
 
99
- #: compatibility/__main__.py:395
99
+ #: compatibility/core.py:395
100
100
  msgid "Invalid system in %s. Allowed: %s"
101
101
  msgstr "Ungültiges System in %s. Erlaubt: %s"
102
102
 
103
- #: compatibility/__main__.py:412
103
+ #: compatibility/core.py:412
104
104
  msgid "Contradiction: System cannot simultaneously be fully AND only partially supported."
105
105
  msgstr "Widerspruch: System kann nicht gleichzeitig vollständig UND nur teilweise unterstützt sein."
106
106
 
107
- #: compatibility/__main__.py:418
107
+ #: compatibility/core.py:418
108
108
  msgid "Contradiction: System cannot have full support AND be incompatible!"
109
109
  msgstr "Widerspruch: System kann nicht vollständig unterstützt UND inkompatibel sein!"
110
110
 
111
- #: compatibility/__main__.py:434
111
+ #: compatibility/core.py:434
112
112
  msgid "%s fully supports %s."
113
113
  msgstr "%s unterstützt %s vollständig."
114
114
 
115
- #: compatibility/__main__.py:438
115
+ #: compatibility/core.py:438
116
116
  msgid "%s has only partial support on %s."
117
117
  msgstr "%s hat nur teilweise Unterstützung für %s."
118
118
 
119
- #: compatibility/__main__.py:443
119
+ #: compatibility/core.py:443
120
120
  msgid "This version of %s is incompatible with %s!"
121
121
  msgstr "Diese Version von %s ist inkompatibel mit %s!"
122
122
 
123
- #: compatibility/__main__.py:448
123
+ #: compatibility/core.py:448
124
124
  msgid "%s's support for %s is unknown!"
125
125
  msgstr "Die Unterstützung von %s für %s ist unbekannt!"
126
126
 
127
- #: compatibility/__main__.py:479
127
+ #: compatibility/core.py:479
128
128
  msgid "You are using %(package)s %(version)s (released: %(date)s)"
129
129
  msgstr "Sie verwenden %(package)s %(version)s (veröffentlicht: %(date)s)"
130
130
 
131
- #: compatibility/__main__.py:512
131
+ #: compatibility/core.py:512
132
132
  msgid "Your version of %s was released %s days ago. Please check for updates."
133
133
  msgstr "Ihre Version von %s wurde vor %s Tagen veröffentlicht. Bitte prüfen Sie auf Updates."
134
134
 
135
- #: compatibility/__main__.py:535
135
+ #: compatibility/core.py:535
136
136
  msgid "A key in nag_over_update is missing."
137
137
  msgstr "Ein Schlüssel in nag_over_update fehlt."
138
138
 
139
- #: compatibility/__main__.py:542
139
+ #: compatibility/core.py:542
140
140
  msgid "Some key in nag_over_update has wrong type!"
141
141
  msgstr "Ein Schlüssel in nag_over_update hat den falschen Typ!"
142
142
 
143
- #: compatibility/__main__.py:544
143
+ #: compatibility/core.py:544
144
144
  msgid "nag_days_after_release must not be negative."
145
145
  msgstr "nag_days_after_release darf nicht negativ sein."
146
146
 
147
- #: compatibility/__main__.py:546
147
+ #: compatibility/core.py:546
148
148
  msgid "nag_in_hundred must be int between 0 and 100."
149
149
  msgstr "nag_in_hundred muss ein Integer zwischen 0 und 100 sein."
150
150
 
151
- #: compatibility/__main__.py:195
151
+ #: compatibility/core.py:195
152
152
  msgid "The release_date %s is more than %s days in the future. Please check it is correct."
153
153
  msgstr "Das release_date %s liegt mehr als %s Tage in der Zukunft. Bitte prüfen Sie, ob es korrekt ist."
154
154
 
155
- #: compatibility/__main__.py:199
155
+ #: compatibility/core.py:199
156
156
  msgid "The release_date %s is more than %s years in the past. Please check it is correct."
157
157
  msgstr "Das release_date %s liegt mehr als %s Jahre in der Vergangenheit. Bitte prüfen Sie, ob es korrekt ist."
158
158
 
159
- #: compatibility/__main__.py:256
159
+ #: compatibility/core.py:256
160
160
  msgid "Parameter python_version_support must be a dictionary"
161
161
  msgstr "Parameter python_version_support muss ein Dictionary sein"
162
162
 
163
- #: compatibility/__main__.py:566
163
+ #: compatibility/core.py:566
164
164
  msgid "Parameter nag_over_update must be a dictionary"
165
165
  msgstr "Parameter nag_over_update muss ein Dictionary sein"
@@ -18,150 +18,150 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
20
 
21
- #: compatibility/__main__.py:153
21
+ #: compatibility/core.py:153
22
22
  msgid "Non-existing or incomplete date!"
23
23
  msgstr "¡Fecha inexistente o incompleta!"
24
24
 
25
- #: compatibility/__main__.py:156
25
+ #: compatibility/core.py:156
26
26
  msgid "date_to_coerce must be either string or datetime.date"
27
27
  msgstr "date_to_coerce debe ser una cadena o datetime.date"
28
28
 
29
- #: compatibility/__main__.py:171
29
+ #: compatibility/core.py:171
30
30
  msgid "Missing package name!"
31
31
  msgstr "¡Falta el nombre del paquete!"
32
32
 
33
- #: compatibility/__main__.py:173
33
+ #: compatibility/core.py:173
34
34
  msgid "Missing package version!"
35
35
  msgstr "¡Falta la versión del paquete!"
36
36
 
37
- #: compatibility/__main__.py:176
37
+ #: compatibility/core.py:176
38
38
  msgid "Invalid value for language_messages!"
39
39
  msgstr "¡Valor no válido para language_messages!"
40
40
 
41
- #: compatibility/__main__.py:179
41
+ #: compatibility/core.py:179
42
42
  msgid "Invalid value for on_incompatible!"
43
43
  msgstr "¡Valor no válido para on_incompatible!"
44
44
 
45
- #: compatibility/__main__.py:242
45
+ #: compatibility/core.py:242
46
46
  msgid "Parameter python_version_support incomplete!"
47
47
  msgstr "¡Parámetro python_version_support incompleto!"
48
48
 
49
- #: compatibility/__main__.py:245
49
+ #: compatibility/core.py:245
50
50
  msgid "Parameter python_version_support: too many keys!"
51
51
  msgstr "Parámetro python_version_support: ¡demasiadas claves!"
52
52
 
53
- #: compatibility/__main__.py:253
53
+ #: compatibility/core.py:253
54
54
  msgid "Parameter python_version_support contains unknown keys."
55
55
  msgstr "El parámetro python_version_support contiene claves desconocidas."
56
56
 
57
- #: compatibility/__main__.py:260
57
+ #: compatibility/core.py:260
58
58
  msgid "Value for key min_version is incorrect."
59
59
  msgstr "El valor de la clave min_version es incorrecto."
60
60
 
61
- #: compatibility/__main__.py:264
61
+ #: compatibility/core.py:264
62
62
  msgid "Value for key max_tested_version incorrect."
63
63
  msgstr "El valor de la clave max_tested_version es incorrecto."
64
64
 
65
- #: compatibility/__main__.py:326
65
+ #: compatibility/core.py:326
66
66
  msgid "Value for key incompatible_versions must be a list."
67
67
  msgstr "El valor de la clave incompatible_versions debe ser una lista."
68
68
 
69
- #: compatibility/__main__.py:294
69
+ #: compatibility/core.py:294
70
70
  msgid "min_version (%(min)s) is higher than max_tested_version (%(max)s)."
71
71
  msgstr "min_version (%(min)s) es mayor que max_tested_version (%(max)s)."
72
72
 
73
- #: compatibility/__main__.py:268
73
+ #: compatibility/core.py:268
74
74
  msgid "Some string in incompatible_versions cannot be parsed."
75
75
  msgstr "No se puede analizar una cadena de incompatible_versions."
76
76
 
77
- #: compatibility/__main__.py:300
77
+ #: compatibility/core.py:300
78
78
  msgid "You use %(running)s, but need at least %(required)s to run %(package)s."
79
79
  msgstr "Usa %(running)s, pero necesita al menos %(required)s para ejecutar %(package)s."
80
80
 
81
- #: compatibility/__main__.py:309
81
+ #: compatibility/core.py:309
82
82
  msgid "Your version of Python is not compatible with this version of %(package)s. Please check for updates."
83
83
  msgstr "Su versión de Python no es compatible con esta versión de %(package)s. Compruebe si hay actualizaciones."
84
84
 
85
- #: compatibility/__main__.py:332
85
+ #: compatibility/core.py:332
86
86
  msgid "You are running Python %s, but your version of %s is only tested up to %s. Please check for updates."
87
87
  msgstr "Está ejecutando Python %s, pero su versión de %s solo se ha probado hasta %s. Compruebe si hay actualizaciones."
88
88
 
89
- #: compatibility/__main__.py:362
89
+ #: compatibility/core.py:362
90
90
  msgid "Parameter system_support must be a dictionary"
91
91
  msgstr "El parámetro system_support debe ser un diccionario"
92
92
 
93
- #: compatibility/__main__.py:389
93
+ #: compatibility/core.py:389
94
94
  msgid "Unknown key in dictionary system_support"
95
95
  msgstr "Clave desconocida en el diccionario system_support"
96
96
 
97
- #: compatibility/__main__.py:391
97
+ #: compatibility/core.py:391
98
98
  msgid "Use a set to hold values for %s."
99
99
  msgstr "Use un set para contener los valores de %s."
100
100
 
101
- #: compatibility/__main__.py:395
101
+ #: compatibility/core.py:395
102
102
  msgid "Invalid system in %s. Allowed: %s"
103
103
  msgstr "Sistema no válido en %s. Permitidos: %s"
104
104
 
105
- #: compatibility/__main__.py:412
105
+ #: compatibility/core.py:412
106
106
  msgid "Contradiction: System cannot simultaneously be fully AND only partially supported."
107
107
  msgstr "Contradicción: un sistema no puede tener simultáneamente compatibilidad total Y solo parcial."
108
108
 
109
- #: compatibility/__main__.py:418
109
+ #: compatibility/core.py:418
110
110
  msgid "Contradiction: System cannot have full support AND be incompatible!"
111
111
  msgstr "¡Contradicción: un sistema no puede tener compatibilidad total Y ser incompatible!"
112
112
 
113
- #: compatibility/__main__.py:434
113
+ #: compatibility/core.py:434
114
114
  msgid "%s fully supports %s."
115
115
  msgstr "%s es totalmente compatible con %s."
116
116
 
117
- #: compatibility/__main__.py:438
117
+ #: compatibility/core.py:438
118
118
  msgid "%s has only partial support on %s."
119
119
  msgstr "%s solo tiene compatibilidad parcial en %s."
120
120
 
121
- #: compatibility/__main__.py:443
121
+ #: compatibility/core.py:443
122
122
  msgid "This version of %s is incompatible with %s!"
123
123
  msgstr "¡Esta versión de %s es incompatible con %s!"
124
124
 
125
- #: compatibility/__main__.py:448
125
+ #: compatibility/core.py:448
126
126
  msgid "%s's support for %s is unknown!"
127
127
  msgstr "¡La compatibilidad de %s con %s es desconocida!"
128
128
 
129
- #: compatibility/__main__.py:479
129
+ #: compatibility/core.py:479
130
130
  msgid "You are using %(package)s %(version)s (released: %(date)s)"
131
131
  msgstr "Está usando %(package)s %(version)s (publicado: %(date)s)"
132
132
 
133
- #: compatibility/__main__.py:512
133
+ #: compatibility/core.py:512
134
134
  msgid "Your version of %s was released %s days ago. Please check for updates."
135
135
  msgstr "Su versión de %s se publicó hace %s días. Compruebe si hay actualizaciones."
136
136
 
137
- #: compatibility/__main__.py:535
137
+ #: compatibility/core.py:535
138
138
  msgid "A key in nag_over_update is missing."
139
139
  msgstr "Falta una clave en nag_over_update."
140
140
 
141
- #: compatibility/__main__.py:542
141
+ #: compatibility/core.py:542
142
142
  msgid "Some key in nag_over_update has wrong type!"
143
143
  msgstr "¡Una clave de nag_over_update tiene un tipo incorrecto!"
144
144
 
145
- #: compatibility/__main__.py:544
145
+ #: compatibility/core.py:544
146
146
  msgid "nag_days_after_release must not be negative."
147
147
  msgstr "nag_days_after_release no debe ser negativo."
148
148
 
149
- #: compatibility/__main__.py:546
149
+ #: compatibility/core.py:546
150
150
  msgid "nag_in_hundred must be int between 0 and 100."
151
151
  msgstr "nag_in_hundred debe ser un entero entre 0 y 100."
152
152
 
153
- #: compatibility/__main__.py:195
153
+ #: compatibility/core.py:195
154
154
  msgid "The release_date %s is more than %s days in the future. Please check it is correct."
155
155
  msgstr "La release_date %s está a más de %s días en el futuro. Compruebe que sea correcta."
156
156
 
157
- #: compatibility/__main__.py:199
157
+ #: compatibility/core.py:199
158
158
  msgid "The release_date %s is more than %s years in the past. Please check it is correct."
159
159
  msgstr "La release_date %s es de hace más de %s años. Compruebe que sea correcta."
160
160
 
161
- #: compatibility/__main__.py:256
161
+ #: compatibility/core.py:256
162
162
  msgid "Parameter python_version_support must be a dictionary"
163
163
  msgstr "El parámetro python_version_support debe ser un diccionario"
164
164
 
165
- #: compatibility/__main__.py:566
165
+ #: compatibility/core.py:566
166
166
  msgid "Parameter nag_over_update must be a dictionary"
167
167
  msgstr "El parámetro nag_over_update debe ser un diccionario"
@@ -18,150 +18,150 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
20
 
21
- #: compatibility/__main__.py:153
21
+ #: compatibility/core.py:153
22
22
  msgid "Non-existing or incomplete date!"
23
23
  msgstr "Date inexistante ou incomplète !"
24
24
 
25
- #: compatibility/__main__.py:156
25
+ #: compatibility/core.py:156
26
26
  msgid "date_to_coerce must be either string or datetime.date"
27
27
  msgstr "date_to_coerce doit être soit une chaîne, soit datetime.date"
28
28
 
29
- #: compatibility/__main__.py:171
29
+ #: compatibility/core.py:171
30
30
  msgid "Missing package name!"
31
31
  msgstr "Nom de paquet manquant !"
32
32
 
33
- #: compatibility/__main__.py:173
33
+ #: compatibility/core.py:173
34
34
  msgid "Missing package version!"
35
35
  msgstr "Version de paquet manquante !"
36
36
 
37
- #: compatibility/__main__.py:176
37
+ #: compatibility/core.py:176
38
38
  msgid "Invalid value for language_messages!"
39
39
  msgstr "Valeur invalide pour language_messages !"
40
40
 
41
- #: compatibility/__main__.py:179
41
+ #: compatibility/core.py:179
42
42
  msgid "Invalid value for on_incompatible!"
43
43
  msgstr "Valeur invalide pour on_incompatible !"
44
44
 
45
- #: compatibility/__main__.py:242
45
+ #: compatibility/core.py:242
46
46
  msgid "Parameter python_version_support incomplete!"
47
47
  msgstr "Paramètre python_version_support incomplet !"
48
48
 
49
- #: compatibility/__main__.py:245
49
+ #: compatibility/core.py:245
50
50
  msgid "Parameter python_version_support: too many keys!"
51
51
  msgstr "Paramètre python_version_support : trop de clés !"
52
52
 
53
- #: compatibility/__main__.py:253
53
+ #: compatibility/core.py:253
54
54
  msgid "Parameter python_version_support contains unknown keys."
55
55
  msgstr "Le paramètre python_version_support contient des clés inconnues."
56
56
 
57
- #: compatibility/__main__.py:260
57
+ #: compatibility/core.py:260
58
58
  msgid "Value for key min_version is incorrect."
59
59
  msgstr "La valeur de la clé min_version est incorrecte."
60
60
 
61
- #: compatibility/__main__.py:264
61
+ #: compatibility/core.py:264
62
62
  msgid "Value for key max_tested_version incorrect."
63
63
  msgstr "La valeur de la clé max_tested_version est incorrecte."
64
64
 
65
- #: compatibility/__main__.py:326
65
+ #: compatibility/core.py:326
66
66
  msgid "Value for key incompatible_versions must be a list."
67
67
  msgstr "La valeur de la clé incompatible_versions doit être une liste."
68
68
 
69
- #: compatibility/__main__.py:294
69
+ #: compatibility/core.py:294
70
70
  msgid "min_version (%(min)s) is higher than max_tested_version (%(max)s)."
71
71
  msgstr "min_version (%(min)s) est supérieur à max_tested_version (%(max)s)."
72
72
 
73
- #: compatibility/__main__.py:268
73
+ #: compatibility/core.py:268
74
74
  msgid "Some string in incompatible_versions cannot be parsed."
75
75
  msgstr "Une chaîne de incompatible_versions ne peut pas être analysée."
76
76
 
77
- #: compatibility/__main__.py:300
77
+ #: compatibility/core.py:300
78
78
  msgid "You use %(running)s, but need at least %(required)s to run %(package)s."
79
79
  msgstr "Vous utilisez %(running)s, mais %(required)s est requis au minimum pour exécuter %(package)s."
80
80
 
81
- #: compatibility/__main__.py:309
81
+ #: compatibility/core.py:309
82
82
  msgid "Your version of Python is not compatible with this version of %(package)s. Please check for updates."
83
83
  msgstr "Votre version de Python n'est pas compatible avec cette version de %(package)s. Veuillez vérifier les mises à jour."
84
84
 
85
- #: compatibility/__main__.py:332
85
+ #: compatibility/core.py:332
86
86
  msgid "You are running Python %s, but your version of %s is only tested up to %s. Please check for updates."
87
87
  msgstr "Vous exécutez Python %s, mais votre version de %s n'est testée que jusqu'à %s. Veuillez vérifier les mises à jour."
88
88
 
89
- #: compatibility/__main__.py:362
89
+ #: compatibility/core.py:362
90
90
  msgid "Parameter system_support must be a dictionary"
91
91
  msgstr "Le paramètre system_support doit être un dictionnaire"
92
92
 
93
- #: compatibility/__main__.py:389
93
+ #: compatibility/core.py:389
94
94
  msgid "Unknown key in dictionary system_support"
95
95
  msgstr "Clé inconnue dans le dictionnaire system_support"
96
96
 
97
- #: compatibility/__main__.py:391
97
+ #: compatibility/core.py:391
98
98
  msgid "Use a set to hold values for %s."
99
99
  msgstr "Utilisez un set pour contenir les valeurs de %s."
100
100
 
101
- #: compatibility/__main__.py:395
101
+ #: compatibility/core.py:395
102
102
  msgid "Invalid system in %s. Allowed: %s"
103
103
  msgstr "Système invalide dans %s. Autorisés : %s"
104
104
 
105
- #: compatibility/__main__.py:412
105
+ #: compatibility/core.py:412
106
106
  msgid "Contradiction: System cannot simultaneously be fully AND only partially supported."
107
107
  msgstr "Contradiction : un système ne peut pas être à la fois entièrement ET seulement partiellement pris en charge."
108
108
 
109
- #: compatibility/__main__.py:418
109
+ #: compatibility/core.py:418
110
110
  msgid "Contradiction: System cannot have full support AND be incompatible!"
111
111
  msgstr "Contradiction : un système ne peut pas être entièrement pris en charge ET incompatible !"
112
112
 
113
- #: compatibility/__main__.py:434
113
+ #: compatibility/core.py:434
114
114
  msgid "%s fully supports %s."
115
115
  msgstr "%s prend entièrement en charge %s."
116
116
 
117
- #: compatibility/__main__.py:438
117
+ #: compatibility/core.py:438
118
118
  msgid "%s has only partial support on %s."
119
119
  msgstr "%s n'a qu'une prise en charge partielle sur %s."
120
120
 
121
- #: compatibility/__main__.py:443
121
+ #: compatibility/core.py:443
122
122
  msgid "This version of %s is incompatible with %s!"
123
123
  msgstr "Cette version de %s est incompatible avec %s !"
124
124
 
125
- #: compatibility/__main__.py:448
125
+ #: compatibility/core.py:448
126
126
  msgid "%s's support for %s is unknown!"
127
127
  msgstr "La prise en charge de %s pour %s est inconnue !"
128
128
 
129
- #: compatibility/__main__.py:479
129
+ #: compatibility/core.py:479
130
130
  msgid "You are using %(package)s %(version)s (released: %(date)s)"
131
131
  msgstr "Vous utilisez %(package)s %(version)s (publié : %(date)s)"
132
132
 
133
- #: compatibility/__main__.py:512
133
+ #: compatibility/core.py:512
134
134
  msgid "Your version of %s was released %s days ago. Please check for updates."
135
135
  msgstr "Votre version de %s a été publiée il y a %s jours. Veuillez vérifier les mises à jour."
136
136
 
137
- #: compatibility/__main__.py:535
137
+ #: compatibility/core.py:535
138
138
  msgid "A key in nag_over_update is missing."
139
139
  msgstr "Une clé de nag_over_update est manquante."
140
140
 
141
- #: compatibility/__main__.py:542
141
+ #: compatibility/core.py:542
142
142
  msgid "Some key in nag_over_update has wrong type!"
143
143
  msgstr "Une clé de nag_over_update a un type incorrect !"
144
144
 
145
- #: compatibility/__main__.py:544
145
+ #: compatibility/core.py:544
146
146
  msgid "nag_days_after_release must not be negative."
147
147
  msgstr "nag_days_after_release ne doit pas être négatif."
148
148
 
149
- #: compatibility/__main__.py:546
149
+ #: compatibility/core.py:546
150
150
  msgid "nag_in_hundred must be int between 0 and 100."
151
151
  msgstr "nag_in_hundred doit être un entier entre 0 et 100."
152
152
 
153
- #: compatibility/__main__.py:195
153
+ #: compatibility/core.py:195
154
154
  msgid "The release_date %s is more than %s days in the future. Please check it is correct."
155
155
  msgstr "La release_date %s est à plus de %s jours dans le futur. Veuillez vérifier qu'elle est correcte."
156
156
 
157
- #: compatibility/__main__.py:199
157
+ #: compatibility/core.py:199
158
158
  msgid "The release_date %s is more than %s years in the past. Please check it is correct."
159
159
  msgstr "La release_date %s remonte à plus de %s ans. Veuillez vérifier qu'elle est correcte."
160
160
 
161
- #: compatibility/__main__.py:256
161
+ #: compatibility/core.py:256
162
162
  msgid "Parameter python_version_support must be a dictionary"
163
163
  msgstr "Le paramètre python_version_support doit être un dictionnaire"
164
164
 
165
- #: compatibility/__main__.py:566
165
+ #: compatibility/core.py:566
166
166
  msgid "Parameter nag_over_update must be a dictionary"
167
167
  msgstr "Le paramètre nag_over_update doit être un dictionnaire"
@@ -18,150 +18,150 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
20
 
21
- #: compatibility/__main__.py:153
21
+ #: compatibility/core.py:153
22
22
  msgid "Non-existing or incomplete date!"
23
23
  msgstr "Niet-bestaande of onvolledige datum!"
24
24
 
25
- #: compatibility/__main__.py:156
25
+ #: compatibility/core.py:156
26
26
  msgid "date_to_coerce must be either string or datetime.date"
27
27
  msgstr "date_to_coerce moet een string of datetime.date zijn"
28
28
 
29
- #: compatibility/__main__.py:171
29
+ #: compatibility/core.py:171
30
30
  msgid "Missing package name!"
31
31
  msgstr "Ontbrekende pakketnaam!"
32
32
 
33
- #: compatibility/__main__.py:173
33
+ #: compatibility/core.py:173
34
34
  msgid "Missing package version!"
35
35
  msgstr "Ontbrekende pakketversie!"
36
36
 
37
- #: compatibility/__main__.py:176
37
+ #: compatibility/core.py:176
38
38
  msgid "Invalid value for language_messages!"
39
39
  msgstr "Ongeldige waarde voor language_messages!"
40
40
 
41
- #: compatibility/__main__.py:179
41
+ #: compatibility/core.py:179
42
42
  msgid "Invalid value for on_incompatible!"
43
43
  msgstr "Ongeldige waarde voor on_incompatible!"
44
44
 
45
- #: compatibility/__main__.py:242
45
+ #: compatibility/core.py:242
46
46
  msgid "Parameter python_version_support incomplete!"
47
47
  msgstr "Parameter python_version_support is onvolledig!"
48
48
 
49
- #: compatibility/__main__.py:245
49
+ #: compatibility/core.py:245
50
50
  msgid "Parameter python_version_support: too many keys!"
51
51
  msgstr "Parameter python_version_support: te veel sleutels!"
52
52
 
53
- #: compatibility/__main__.py:253
53
+ #: compatibility/core.py:253
54
54
  msgid "Parameter python_version_support contains unknown keys."
55
55
  msgstr "Parameter python_version_support bevat onbekende sleutels."
56
56
 
57
- #: compatibility/__main__.py:260
57
+ #: compatibility/core.py:260
58
58
  msgid "Value for key min_version is incorrect."
59
59
  msgstr "De waarde voor sleutel min_version is onjuist."
60
60
 
61
- #: compatibility/__main__.py:264
61
+ #: compatibility/core.py:264
62
62
  msgid "Value for key max_tested_version incorrect."
63
63
  msgstr "De waarde voor sleutel max_tested_version is onjuist."
64
64
 
65
- #: compatibility/__main__.py:326
65
+ #: compatibility/core.py:326
66
66
  msgid "Value for key incompatible_versions must be a list."
67
67
  msgstr "De waarde voor sleutel incompatible_versions moet een lijst zijn."
68
68
 
69
- #: compatibility/__main__.py:294
69
+ #: compatibility/core.py:294
70
70
  msgid "min_version (%(min)s) is higher than max_tested_version (%(max)s)."
71
71
  msgstr "min_version (%(min)s) is hoger dan max_tested_version (%(max)s)."
72
72
 
73
- #: compatibility/__main__.py:268
73
+ #: compatibility/core.py:268
74
74
  msgid "Some string in incompatible_versions cannot be parsed."
75
75
  msgstr "Een string in incompatible_versions kan niet worden geparseerd."
76
76
 
77
- #: compatibility/__main__.py:300
77
+ #: compatibility/core.py:300
78
78
  msgid "You use %(running)s, but need at least %(required)s to run %(package)s."
79
79
  msgstr "U gebruikt %(running)s, maar u hebt minstens %(required)s nodig om %(package)s uit te voeren."
80
80
 
81
- #: compatibility/__main__.py:309
81
+ #: compatibility/core.py:309
82
82
  msgid "Your version of Python is not compatible with this version of %(package)s. Please check for updates."
83
83
  msgstr "Uw versie van Python is niet compatibel met deze versie van %(package)s. Controleer op updates."
84
84
 
85
- #: compatibility/__main__.py:332
85
+ #: compatibility/core.py:332
86
86
  msgid "You are running Python %s, but your version of %s is only tested up to %s. Please check for updates."
87
87
  msgstr "U voert Python %s uit, maar uw versie van %s is alleen getest tot %s. Controleer op updates."
88
88
 
89
- #: compatibility/__main__.py:362
89
+ #: compatibility/core.py:362
90
90
  msgid "Parameter system_support must be a dictionary"
91
91
  msgstr "Parameter system_support moet een dictionary zijn"
92
92
 
93
- #: compatibility/__main__.py:389
93
+ #: compatibility/core.py:389
94
94
  msgid "Unknown key in dictionary system_support"
95
95
  msgstr "Onbekende sleutel in dictionary system_support"
96
96
 
97
- #: compatibility/__main__.py:391
97
+ #: compatibility/core.py:391
98
98
  msgid "Use a set to hold values for %s."
99
99
  msgstr "Gebruik een set voor de waarden van %s."
100
100
 
101
- #: compatibility/__main__.py:395
101
+ #: compatibility/core.py:395
102
102
  msgid "Invalid system in %s. Allowed: %s"
103
103
  msgstr "Ongeldig systeem in %s. Toegestaan: %s"
104
104
 
105
- #: compatibility/__main__.py:412
105
+ #: compatibility/core.py:412
106
106
  msgid "Contradiction: System cannot simultaneously be fully AND only partially supported."
107
107
  msgstr "Tegenstrijdigheid: een systeem kan niet tegelijk volledig EN slechts gedeeltelijk worden ondersteund."
108
108
 
109
- #: compatibility/__main__.py:418
109
+ #: compatibility/core.py:418
110
110
  msgid "Contradiction: System cannot have full support AND be incompatible!"
111
111
  msgstr "Tegenstrijdigheid: een systeem kan niet volledig worden ondersteund EN incompatibel zijn!"
112
112
 
113
- #: compatibility/__main__.py:434
113
+ #: compatibility/core.py:434
114
114
  msgid "%s fully supports %s."
115
115
  msgstr "%s ondersteunt %s volledig."
116
116
 
117
- #: compatibility/__main__.py:438
117
+ #: compatibility/core.py:438
118
118
  msgid "%s has only partial support on %s."
119
119
  msgstr "%s heeft slechts gedeeltelijke ondersteuning op %s."
120
120
 
121
- #: compatibility/__main__.py:443
121
+ #: compatibility/core.py:443
122
122
  msgid "This version of %s is incompatible with %s!"
123
123
  msgstr "Deze versie van %s is incompatibel met %s!"
124
124
 
125
- #: compatibility/__main__.py:448
125
+ #: compatibility/core.py:448
126
126
  msgid "%s's support for %s is unknown!"
127
127
  msgstr "De ondersteuning van %s voor %s is onbekend!"
128
128
 
129
- #: compatibility/__main__.py:479
129
+ #: compatibility/core.py:479
130
130
  msgid "You are using %(package)s %(version)s (released: %(date)s)"
131
131
  msgstr "U gebruikt %(package)s %(version)s (uitgebracht: %(date)s)"
132
132
 
133
- #: compatibility/__main__.py:512
133
+ #: compatibility/core.py:512
134
134
  msgid "Your version of %s was released %s days ago. Please check for updates."
135
135
  msgstr "Uw versie van %s is %s dagen geleden uitgebracht. Controleer op updates."
136
136
 
137
- #: compatibility/__main__.py:535
137
+ #: compatibility/core.py:535
138
138
  msgid "A key in nag_over_update is missing."
139
139
  msgstr "Een sleutel in nag_over_update ontbreekt."
140
140
 
141
- #: compatibility/__main__.py:542
141
+ #: compatibility/core.py:542
142
142
  msgid "Some key in nag_over_update has wrong type!"
143
143
  msgstr "Een sleutel in nag_over_update heeft een verkeerd type!"
144
144
 
145
- #: compatibility/__main__.py:544
145
+ #: compatibility/core.py:544
146
146
  msgid "nag_days_after_release must not be negative."
147
147
  msgstr "nag_days_after_release mag niet negatief zijn."
148
148
 
149
- #: compatibility/__main__.py:546
149
+ #: compatibility/core.py:546
150
150
  msgid "nag_in_hundred must be int between 0 and 100."
151
151
  msgstr "nag_in_hundred moet een geheel getal tussen 0 en 100 zijn."
152
152
 
153
- #: compatibility/__main__.py:195
153
+ #: compatibility/core.py:195
154
154
  msgid "The release_date %s is more than %s days in the future. Please check it is correct."
155
155
  msgstr "De release_date %s ligt meer dan %s dagen in de toekomst. Controleer of deze juist is."
156
156
 
157
- #: compatibility/__main__.py:199
157
+ #: compatibility/core.py:199
158
158
  msgid "The release_date %s is more than %s years in the past. Please check it is correct."
159
159
  msgstr "De release_date %s ligt meer dan %s jaar in het verleden. Controleer of deze juist is."
160
160
 
161
- #: compatibility/__main__.py:256
161
+ #: compatibility/core.py:256
162
162
  msgid "Parameter python_version_support must be a dictionary"
163
163
  msgstr "Parameter python_version_support moet een dictionary zijn"
164
164
 
165
- #: compatibility/__main__.py:566
165
+ #: compatibility/core.py:566
166
166
  msgid "Parameter nag_over_update must be a dictionary"
167
167
  msgstr "Parameter nag_over_update moet een dictionary zijn"
@@ -1,12 +1,12 @@
1
1
  [build-system]
2
- requires = ["poetry-core>=2.0.0"]
2
+ requires = ["poetry-core>=2.5.0"]
3
3
  build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  # Standard PEP 621 project metadata. Poetry-specific build settings live under
6
6
  # [tool.poetry] below.
7
7
  [project]
8
8
  name = "compatibility"
9
- version = "2.2.0"
9
+ version = "2.3.0"
10
10
  description = "A library that checks whether the running version of Python is compatible and tested. Remind the user to check for updates of the library."
11
11
  readme = "README.md"
12
12
  license = "Apache-2.0"
@@ -22,6 +22,7 @@ classifiers = [
22
22
  "Programming Language :: Python :: 3.12",
23
23
  "Programming Language :: Python :: 3.13",
24
24
  "Programming Language :: Python :: 3.14",
25
+ "Programming Language :: Python :: 3.15",
25
26
  "Operating System :: OS Independent",
26
27
  "Operating System :: POSIX :: Linux",
27
28
  "Operating System :: Microsoft :: Windows",
@@ -41,11 +42,11 @@ dependencies = []
41
42
  # same set so local and CI tooling stay aligned.
42
43
  [project.optional-dependencies]
43
44
  dev = [
44
- "pytest>=9.0.3,<10",
45
+ "pytest>=9.1.1,<10",
45
46
  "pytest-cov>=7.1.0,<8",
46
- "mypy>=2.1.0,<3",
47
- "ruff>=0.15.16,<0.16",
48
- "coverage[toml]>=7.14.1,<8",
47
+ "mypy>=2.3.1,<3",
48
+ "ruff>=0.16.8,<0.17",
49
+ "coverage[toml]>=7.16.1,<8",
49
50
  ]
50
51
 
51
52
  [project.urls]
File without changes