diracx 0.0.1a23__tar.gz → 0.0.1a25__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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: diracx
3
- Version: 0.0.1a23
3
+ Version: 0.0.1a25
4
4
  Summary: Client installation for users of DiracX installations
5
5
  License: GPL-3.0-only
6
6
  Classifier: Intended Audience :: Science/Research
@@ -46,6 +46,7 @@ select = [
46
46
  "FLY", # flynt
47
47
  "DTZ", # flake8-datetimez
48
48
  "S", # flake8-bandit
49
+ "N", # pep8-naming
49
50
  ]
50
51
  ignore = [
51
52
  "B905",
@@ -68,11 +69,17 @@ ignore = [
68
69
  "D404",
69
70
  ]
70
71
 
72
+ [tool.ruff.lint.isort]
73
+ required-imports = ["from __future__ import annotations"]
74
+
71
75
  [tool.ruff.lint.per-file-ignores]
72
76
  # Ignore Bandit security checks in the test directories
73
77
  "diracx-testing/*" = ["S"]
74
78
  "diracx-*/tests/*" = ["S"]
75
79
 
80
+ [tool.ruff.lint.extend-per-file-ignores]
81
+ "diracx-routers/src/diracx/routers/access_policies.py" = ["I002"]
82
+
76
83
  [tool.ruff.lint.flake8-bugbear]
77
84
  # Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
78
85
  extend-immutable-calls = [
File without changes
File without changes
File without changes