longwei 2.0.0__tar.gz → 2.0.2__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.
Files changed (27) hide show
  1. {longwei-2.0.0 → longwei-2.0.2}/PKG-INFO +2 -2
  2. {longwei-2.0.0 → longwei-2.0.2}/pyproject.toml +9 -14
  3. {longwei-2.0.0 → longwei-2.0.2}/README.md +0 -0
  4. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/__init__.py +0 -0
  5. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_base.py +0 -0
  6. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_accounts.py +0 -0
  7. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_auth.py +0 -0
  8. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_credentials.py +0 -0
  9. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_discovery.py +0 -0
  10. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_favourites_bookmarks.py +0 -0
  11. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_filters.py +0 -0
  12. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_gotosocial.py +0 -0
  13. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_instance.py +0 -0
  14. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_lists.py +0 -0
  15. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_notifications.py +0 -0
  16. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_pleroma.py +0 -0
  17. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_polls.py +0 -0
  18. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_reports.py +0 -0
  19. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_request_helpers.py +0 -0
  20. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_statuses.py +0 -0
  21. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/_mixin_timelines.py +0 -0
  22. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/constants.py +0 -0
  23. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/enums.py +0 -0
  24. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/exceptions.py +0 -0
  25. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/models.py +0 -0
  26. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/types.py +0 -0
  27. {longwei-2.0.0 → longwei-2.0.2}/src/longwei/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: longwei
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary: Python client library for ActivityPub-compatible servers
5
5
  Author: marvin8
6
6
  Author-email: marvin8 <marvin8@tuta.io>
@@ -17,7 +17,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
17
  Requires-Dist: httpx2[http2]~=2.3
18
18
  Requires-Dist: pydantic~=2.12
19
19
  Requires-Python: >=3.11
20
- Project-URL: Documentation, https://marvinsmastodontools.codeberg.page/longwei/latest/
20
+ Project-URL: Documentation, https://longwei.marvin8.zone/latest/
21
21
  Project-URL: Issues, https://codeberg.org/MarvinsMastodonTools/longwei/issues
22
22
  Project-URL: Source, https://codeberg.org/MarvinsMastodonTools/longwei
23
23
  Project-URL: Changelog, https://codeberg.org/MarvinsMastodonTools/longwei/src/branch/main/CHANGELOG.md
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "longwei"
7
- version = "2.0.0"
7
+ version = "2.0.2"
8
8
  authors = [
9
9
  { name = "marvin8", email = "marvin8@tuta.io" },
10
10
  ]
@@ -30,28 +30,21 @@ dependencies = [
30
30
  [dependency-groups]
31
31
  dev = [
32
32
  "bump-my-version~=1.3",
33
- "complexipy~=5.3",
34
- "git-cliff~=2.12",
35
- "prek~=0.3",
36
- "ruff~=0.15",
37
- "ty~=0.0",
38
- "uv~=0.11",
39
- ]
40
- docs = [
33
+ "complexipy~=6.0",
41
34
  "mkdocs~=1.6",
42
35
  "mkdocs-material~=9.7",
43
36
  "mkdocstrings~=1.0",
44
37
  "mkdocstrings-python~=2.0",
45
38
  "mike~=2.2",
46
- ]
47
- nox = [
48
39
  "nox-uv~=0.7",
49
- ]
50
- pytest = [
40
+ "prek~=0.3",
51
41
  "pytest~=9.0",
52
42
  "pytest-asyncio~=1.3",
53
43
  "pytest-cov~=7.1",
54
44
  "pytest-httpx2~=1.0",
45
+ "ruff~=0.15",
46
+ "ty~=0.0",
47
+ "uv~=0.11",
55
48
  ]
56
49
 
57
50
  [tool.uv]
@@ -61,10 +54,11 @@ constraint-dependencies = [
61
54
  "idna>=3.15", # GHSA-65pc-fj4g-8rjx
62
55
  "pymdown-extensions>=10.21.3", # GHSA-62q4-447f-wv8h
63
56
  "uv>=0.11.15", # GHSA-4gg8-gxpx-9rph
57
+ "pydantic-settings>=2.14.2", # GHSA-4xgf-cpjx-pc3j
64
58
  ]
65
59
 
66
60
  [project.urls]
67
- Documentation = "https://marvinsmastodontools.codeberg.page/longwei/latest/"
61
+ Documentation = "https://longwei.marvin8.zone/latest/"
68
62
  Issues = "https://codeberg.org/MarvinsMastodonTools/longwei/issues"
69
63
  Source = "https://codeberg.org/MarvinsMastodonTools/longwei"
70
64
  Changelog = "https://codeberg.org/MarvinsMastodonTools/longwei/src/branch/main/CHANGELOG.md"
@@ -96,3 +90,4 @@ cache = true
96
90
  library=true
97
91
  groups = true
98
92
  min-age = 7
93
+ check-licenses = true
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes