diracx 0.0.1a17__tar.gz → 0.0.1a18__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.
- {diracx-0.0.1a17 → diracx-0.0.1a18}/PKG-INFO +2 -2
- {diracx-0.0.1a17 → diracx-0.0.1a18}/pyproject.toml +16 -4
- {diracx-0.0.1a17 → diracx-0.0.1a18}/LICENSE +0 -0
- {diracx-0.0.1a17 → diracx-0.0.1a18}/README.md +0 -0
- {diracx-0.0.1a17 → diracx-0.0.1a18}/diracx.egg-info/SOURCES.txt +0 -0
- {diracx-0.0.1a17 → diracx-0.0.1a18}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: diracx
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.1a18
|
|
4
4
|
Summary: Client installation for users of DiracX installations
|
|
5
5
|
License: GPL-3.0-only
|
|
6
6
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -8,7 +8,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Topic :: Scientific/Engineering
|
|
10
10
|
Classifier: Topic :: System :: Distributed Computing
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: diracx-api
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name = "diracx"
|
|
3
3
|
description = "Client installation for users of DiracX installations"
|
|
4
4
|
readme = "README.md"
|
|
5
|
-
requires-python = ">=3.
|
|
5
|
+
requires-python = ">=3.11"
|
|
6
6
|
keywords = []
|
|
7
7
|
license = { text = "GPL-3.0-only" }
|
|
8
8
|
classifiers = [
|
|
@@ -32,7 +32,6 @@ line-length = 120
|
|
|
32
32
|
src = ["diracx-*/src", "diracx-*/tests"]
|
|
33
33
|
exclude = ["diracx-client/src/diracx/client/"]
|
|
34
34
|
|
|
35
|
-
|
|
36
35
|
[tool.ruff.lint]
|
|
37
36
|
select = [
|
|
38
37
|
"E", # pycodestyle errrors
|
|
@@ -40,20 +39,33 @@ select = [
|
|
|
40
39
|
"B", # flake8-bugbear
|
|
41
40
|
"I", # isort
|
|
42
41
|
"PLE", # pylint errors
|
|
42
|
+
"D", # pydocstyle
|
|
43
43
|
# "UP", # pyUpgrade
|
|
44
44
|
"FLY", # flynt
|
|
45
45
|
"DTZ", # flake8-datetimez
|
|
46
46
|
"S", # flake8-bandit
|
|
47
47
|
]
|
|
48
|
-
|
|
49
48
|
ignore = [
|
|
50
49
|
"B905",
|
|
51
50
|
"B008",
|
|
52
51
|
"B006",
|
|
53
52
|
"S101", # bandit: use of assert https://docs.astral.sh/ruff/rules/assert/
|
|
53
|
+
"D203",
|
|
54
|
+
"D213",
|
|
55
|
+
# TODO: Maybe enable these
|
|
56
|
+
"D100",
|
|
57
|
+
"D101",
|
|
58
|
+
"D102",
|
|
59
|
+
"D103",
|
|
60
|
+
"D104",
|
|
61
|
+
"D105",
|
|
62
|
+
"D107",
|
|
63
|
+
# TODO: These should be re-enabled after fixing
|
|
64
|
+
"D205",
|
|
65
|
+
"D401",
|
|
66
|
+
"D404",
|
|
54
67
|
]
|
|
55
68
|
|
|
56
|
-
|
|
57
69
|
[tool.ruff.lint.per-file-ignores]
|
|
58
70
|
# Ignore Bandit security checks in the test directories
|
|
59
71
|
"diracx-testing/*" = ["S"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|