prefpicker 1.23.6__tar.gz → 1.24.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.
Potentially problematic release.
This version of prefpicker might be problematic. Click here for more details.
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.pre-commit-config.yaml +3 -7
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.taskcluster.yml +1 -1
- {prefpicker-1.23.6 → prefpicker-1.24.0}/PKG-INFO +1 -1
- {prefpicker-1.23.6 → prefpicker-1.24.0}/pyproject.toml +18 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/templates/browser-fuzzing.yml +9 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/test_prefpicker.py +1 -1
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/PKG-INFO +1 -1
- {prefpicker-1.23.6 → prefpicker-1.24.0}/tox.ini +0 -2
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.codecov.yml +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.github/CODEOWNERS +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.github/workflows/prefmonitor.yml +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/.gitignore +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/CODE_OF_CONDUCT.md +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/LICENSE +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/MANIFEST.in +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/README.md +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/setup.cfg +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/__init__.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/__main__.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/main.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/prefpicker.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/py.typed +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/templates/schema.json +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/test_main.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker/test_templates.py +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/SOURCES.txt +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/dependency_links.txt +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/entry_points.txt +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/not-zip-safe +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/requires.txt +0 -0
- {prefpicker-1.23.6 → prefpicker-1.24.0}/src/prefpicker.egg-info/top_level.txt +0 -0
|
@@ -3,10 +3,6 @@ repos:
|
|
|
3
3
|
rev: 5.13.2
|
|
4
4
|
hooks:
|
|
5
5
|
- id: isort
|
|
6
|
-
- repo: https://github.com/asottile/yesqa
|
|
7
|
-
rev: v1.5.0
|
|
8
|
-
hooks:
|
|
9
|
-
- id: yesqa
|
|
10
6
|
- repo: https://github.com/asottile/pyupgrade
|
|
11
7
|
rev: v3.15.2
|
|
12
8
|
hooks:
|
|
@@ -16,10 +12,10 @@ repos:
|
|
|
16
12
|
rev: 24.4.2
|
|
17
13
|
hooks:
|
|
18
14
|
- id: black
|
|
19
|
-
- repo: https://github.com/
|
|
20
|
-
rev:
|
|
15
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
16
|
+
rev: v0.5.1
|
|
21
17
|
hooks:
|
|
22
|
-
- id:
|
|
18
|
+
- id: ruff
|
|
23
19
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
24
20
|
rev: v4.6.0
|
|
25
21
|
hooks:
|
|
@@ -52,8 +52,26 @@ ignored-modules = ["pytest"]
|
|
|
52
52
|
[tool.pytest.ini_options]
|
|
53
53
|
log_level = "DEBUG"
|
|
54
54
|
|
|
55
|
+
[tool.ruff.lint]
|
|
56
|
+
select = [
|
|
57
|
+
# pycodestyle
|
|
58
|
+
"E",
|
|
59
|
+
# Pyflakes
|
|
60
|
+
"F",
|
|
61
|
+
# Flynt
|
|
62
|
+
"FLY",
|
|
63
|
+
# Perflint
|
|
64
|
+
"PERF",
|
|
65
|
+
# Ruff-specific rules
|
|
66
|
+
"RUF",
|
|
67
|
+
# pycodestyle
|
|
68
|
+
"W",
|
|
69
|
+
]
|
|
70
|
+
|
|
55
71
|
[semantic_release]
|
|
56
72
|
tag_format = "{version}"
|
|
73
|
+
build_command = "SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PREFPICKER=$NEW_VERSION python -m build -v && twine upload --skip-existing dist/*"
|
|
74
|
+
build_command_env = ["TWINE_USERNAME", "TWINE_PASSWORD"]
|
|
57
75
|
|
|
58
76
|
[semantic_release.commit_author]
|
|
59
77
|
env = "GIT_COMMIT_AUTHOR"
|
|
@@ -288,6 +288,8 @@ pref:
|
|
|
288
288
|
- null
|
|
289
289
|
- true
|
|
290
290
|
dom.fetchKeepalive.enabled:
|
|
291
|
+
review_on_close:
|
|
292
|
+
- 1906952
|
|
291
293
|
variants:
|
|
292
294
|
default:
|
|
293
295
|
- true
|
|
@@ -1079,6 +1081,13 @@ pref:
|
|
|
1079
1081
|
variants:
|
|
1080
1082
|
default:
|
|
1081
1083
|
- ''
|
|
1084
|
+
webgl.colorspaces.prototype:
|
|
1085
|
+
review_on_close:
|
|
1086
|
+
- 1885491
|
|
1087
|
+
variants:
|
|
1088
|
+
default:
|
|
1089
|
+
- false
|
|
1090
|
+
- true
|
|
1082
1091
|
webgl.enable-draft-extensions:
|
|
1083
1092
|
variants:
|
|
1084
1093
|
default:
|
|
@@ -273,6 +273,6 @@ def test_prefpicker_10():
|
|
|
273
273
|
# unknown template
|
|
274
274
|
assert PrefPicker.lookup_template("missing") is None
|
|
275
275
|
# existing template
|
|
276
|
-
template =
|
|
276
|
+
template = next(PrefPicker.templates())
|
|
277
277
|
assert template
|
|
278
278
|
assert PrefPicker.lookup_template(template.name)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|