python-ntfy 0.2.1__tar.gz → 0.2.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.
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/PKG-INFO +2 -1
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/README.md +1 -1
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/pyproject.toml +4 -4
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/python_ntfy/__init__.py +0 -0
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/python_ntfy/_get_functions.py +0 -0
- {python_ntfy-0.2.1 → python_ntfy-0.2.2}/python_ntfy/_send_functions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-ntfy
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: An ntfy library aiming for feature completeness
|
|
5
5
|
Author: Matthew Cane
|
|
6
6
|
Author-email: matthew.cane0@gmail.com
|
|
@@ -86,3 +86,4 @@ You can run the tests against a local instance of `ntfy` *or* `ntfy.sh`.
|
|
|
86
86
|
3. Run the tests with `poetry run pytest --cov`
|
|
87
87
|
|
|
88
88
|
The tests will sent messages to the `python_ntfy_testing` topic so you will need to subcribe to that topic to see the test messages.
|
|
89
|
+
|
|
@@ -71,4 +71,4 @@ You can run the tests against a local instance of `ntfy` *or* `ntfy.sh`.
|
|
|
71
71
|
i. Add username and password for ntfy.sh to `.env` (see example.env)
|
|
72
72
|
3. Run the tests with `poetry run pytest --cov`
|
|
73
73
|
|
|
74
|
-
The tests will sent messages to the `python_ntfy_testing` topic so you will need to subcribe to that topic to see the test messages.
|
|
74
|
+
The tests will sent messages to the `python_ntfy_testing` topic so you will need to subcribe to that topic to see the test messages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "python-ntfy"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "An ntfy library aiming for feature completeness"
|
|
5
5
|
authors = ["Matthew Cane <matthew.cane0@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -10,10 +10,10 @@ python = "^3.11"
|
|
|
10
10
|
requests = "^2.31.0"
|
|
11
11
|
|
|
12
12
|
[tool.poetry.group.dev.dependencies]
|
|
13
|
-
pytest = "
|
|
13
|
+
pytest = ">=7.4.1,<9.0.0"
|
|
14
14
|
python-dotenv = "^1.0.0"
|
|
15
|
-
pytest-asyncio = "
|
|
16
|
-
pytest-codecov = "
|
|
15
|
+
pytest-asyncio = ">=0.21.1,<0.25.0"
|
|
16
|
+
pytest-codecov = ">=0.5.1,<0.7.0"
|
|
17
17
|
ruff = "^0.7.0"
|
|
18
18
|
|
|
19
19
|
[build-system]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|