python-ntfy 0.4.3__tar.gz → 0.4.5__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,19 +1,18 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: python-ntfy
3
- Version: 0.4.3
3
+ Version: 0.4.5
4
4
  Summary: An ntfy library aiming for feature completeness
5
- Home-page: https://github.com/MatthewCane/python-ntfy
6
5
  License: MIT
7
6
  Author: Matthew Cane
8
7
  Author-email: matthew.cane0@gmail.com
9
- Requires-Python: >=3.12,<=3.13
8
+ Requires-Python: >=3.12,<3.14
10
9
  Classifier: Development Status :: 4 - Beta
11
10
  Classifier: Intended Audience :: Developers
12
11
  Classifier: License :: OSI Approved :: MIT License
13
12
  Classifier: Programming Language :: Python :: 3
14
13
  Classifier: Programming Language :: Python :: 3.12
15
14
  Classifier: Programming Language :: Python :: 3.13
16
- Requires-Dist: mkdocstrings[python] (>=0.26.2,<0.27.0)
15
+ Requires-Dist: mkdocstrings[python] (>=0.26.2,<0.28.0)
17
16
  Requires-Dist: requests (>=2.31.0,<3.0.0)
18
17
  Project-URL: Documentation, https://matthewcane.github.io/python-ntfy/
19
18
  Project-URL: Repository, https://github.com/MatthewCane/python-ntfy
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-ntfy"
3
- version = "0.4.3"
3
+ version = "0.4.5"
4
4
  description = "An ntfy library aiming for feature completeness"
5
5
  authors = ["Matthew Cane <matthew.cane0@gmail.com>"]
6
6
  readme = "README.md"
@@ -15,17 +15,17 @@ classifiers = [
15
15
  ]
16
16
 
17
17
  [tool.poetry.dependencies]
18
- python = ">=3.12, <=3.13"
18
+ python = ">=3.12, <3.14"
19
19
  requests = "^2.31.0"
20
- mkdocstrings = {extras = ["python"], version = "^0.26.2"}
20
+ mkdocstrings = {extras = ["python"], version = ">=0.26.2,<0.28.0"}
21
21
 
22
22
  [tool.poetry.group.dev.dependencies]
23
23
  mypy = "^1.12.0"
24
24
  pytest = ">=7.4.1,<9.0.0"
25
25
  python-dotenv = "^1.0.0"
26
- pytest-asyncio = ">=0.21.1,<0.25.0"
26
+ pytest-asyncio = ">=0.21.1,<0.26.0"
27
27
  pytest-codecov = ">=0.5.1,<0.7.0"
28
- ruff = "^0.7.0"
28
+ ruff = ">=0.7,<0.10"
29
29
  mkdocs-material = "^9.5.41"
30
30
  mkdocstrings-python = "^1.12.1"
31
31
  types-pygments = "^2.18.0.20240506"
@@ -69,7 +69,6 @@ ignore = [
69
69
  "D104", # First line of docstring should be in imperative moof
70
70
  "D100", # Missing docstring in public module
71
71
  "ANN001", # Missing type annotation for function argument
72
- "ANN101", # Missing type annotation for self in method
73
72
  "S101", # Use of assert detected
74
73
  "TRY003", # Use of vanilla exception messages
75
74
  ]
@@ -79,4 +78,4 @@ ignore = [
79
78
  convention = "google"
80
79
 
81
80
  [tool.pytest.ini_options]
82
- asyncio_default_fixture_loop_scope = "function"
81
+ asyncio_default_fixture_loop_scope = "function"
File without changes
File without changes