diracx 0.0.1a17__tar.gz → 0.0.1a19__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: diracx
3
- Version: 0.0.1a17
3
+ Version: 0.0.1a19
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.10
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.10"
5
+ requires-python = ">=3.11"
6
6
  keywords = []
7
7
  license = { text = "GPL-3.0-only" }
8
8
  classifiers = [
@@ -30,8 +30,9 @@ build-backend = "setuptools.build_meta"
30
30
  [tool.ruff]
31
31
  line-length = 120
32
32
  src = ["diracx-*/src", "diracx-*/tests"]
33
- exclude = ["diracx-client/src/diracx/client/"]
34
-
33
+ exclude = [
34
+ "diracx-client/src/diracx/client/",
35
+ ]
35
36
 
36
37
  [tool.ruff.lint]
37
38
  select = [
@@ -40,20 +41,33 @@ select = [
40
41
  "B", # flake8-bugbear
41
42
  "I", # isort
42
43
  "PLE", # pylint errors
44
+ "D", # pydocstyle
43
45
  # "UP", # pyUpgrade
44
46
  "FLY", # flynt
45
47
  "DTZ", # flake8-datetimez
46
48
  "S", # flake8-bandit
47
49
  ]
48
-
49
50
  ignore = [
50
51
  "B905",
51
52
  "B008",
52
53
  "B006",
53
54
  "S101", # bandit: use of assert https://docs.astral.sh/ruff/rules/assert/
55
+ "D203",
56
+ "D213",
57
+ # TODO: Maybe enable these
58
+ "D100",
59
+ "D101",
60
+ "D102",
61
+ "D103",
62
+ "D104",
63
+ "D105",
64
+ "D107",
65
+ # TODO: These should be re-enabled after fixing
66
+ "D205",
67
+ "D401",
68
+ "D404",
54
69
  ]
55
70
 
56
-
57
71
  [tool.ruff.lint.per-file-ignores]
58
72
  # Ignore Bandit security checks in the test directories
59
73
  "diracx-testing/*" = ["S"]
File without changes
File without changes
File without changes