winipedia-django 0.2.7__tar.gz → 0.2.12__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 winipedia-django might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: winipedia-django
3
- Version: 0.2.7
3
+ Version: 0.2.12
4
4
  Summary: A utils package for django
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -11,8 +11,8 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
13
  Classifier: Programming Language :: Python :: 3.14
14
- Requires-Dist: django (>=5.2.7,<6.0.0)
15
- Requires-Dist: winipedia-utils (>=0.2.10,<0.3.0)
14
+ Requires-Dist: django
15
+ Requires-Dist: winipedia-utils
16
16
  Description-Content-Type: text/markdown
17
17
 
18
18
  # winipedia_django
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "winipedia-django"
3
- version = "0.2.7"
3
+ version = "0.2.12"
4
4
  description = "A utils package for django"
5
5
  authors = [
6
6
  {name = "Winipedia",email = "win.steveker@gmx.de"}
@@ -8,30 +8,30 @@ authors = [
8
8
  license = "MIT"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
11
- dependencies = [
12
- "winipedia-utils (>=0.2.10,<0.3.0)",
13
- "django (>=5.2.7,<6.0.0)"
14
- ]
11
+ dynamic = ["dependencies"]
15
12
 
16
13
 
17
14
  [build-system]
18
15
  requires = ["poetry-core>=2.0.0,<3.0.0"]
19
16
  build-backend = "poetry.core.masonry.api"
20
17
 
21
- [dependency-groups]
22
- dev = [
23
- "ruff (>=0.14.1,<0.15.0)",
24
- "pre-commit (>=4.3.0,<5.0.0)",
25
- "mypy (>=1.18.2,<2.0.0)",
26
- "pytest (>=8.4.2,<9.0.0)",
27
- "bandit (>=1.8.6,<2.0.0)",
28
- "types-setuptools (>=80.9.0.20250822,<81.0.0.0)",
29
- "types-tqdm (>=4.67.0.20250809,<5.0.0.0)",
30
- "types-defusedxml (>=0.7.0.20250822,<0.8.0.0)",
31
- "types-pyyaml (>=6.0.12.20250915,<7.0.0.0)",
32
- "pytest-mock (>=3.15.1,<4.0.0)",
33
- "django-stubs (>=5.2.7,<6.0.0)"
34
- ]
18
+
19
+ [tool.poetry.dependencies]
20
+ winipedia-utils = "*"
21
+ django = "*"
22
+
23
+ [tool.poetry.group.dev.dependencies]
24
+ mypy = "*"
25
+ ruff = "*"
26
+ pre-commit = "*"
27
+ django-stubs = "*"
28
+ types-setuptools = "*"
29
+ types-tqdm = "*"
30
+ pytest-mock = "*"
31
+ pytest = "*"
32
+ types-pyyaml = "*"
33
+ types-defusedxml = "*"
34
+ bandit = "*"
35
35
 
36
36
  [tool.ruff]
37
37
  exclude = [".*", "**/migrations/*.py"]
@@ -54,3 +54,6 @@ files = "."
54
54
  testpaths = ["tests"]
55
55
 
56
56
  [tool.bandit]
57
+
58
+ [[tool.poetry.packages]]
59
+ include = "winipedia_django"