Skip to content

Commit

Permalink
chore: soften winrt packages version specification (#153)
Browse files Browse the repository at this point in the history
Should now support version 2.0 up to 3.0, excluding. Resolves #152
  • Loading branch information
DatGuy1 authored Jun 30, 2024
1 parent 386c7aa commit d032de9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
1.2.0 (TBD)
1.2.0 (2024-06-30)
===========
- Implement removing toasts and toast groups (#145)
- See `'removing toasts' <https://windows-toasts.readthedocs.io/en/latest/advanced_usage.html#removing-toasts>`_ for an example.
- Relax winrt package versioning requirements to support 2.x (#153)

1.1.1 (2024-05-19)
==================
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
packages = ["windows_toasts", "scripts"]

requires = [
"winrt-runtime<=2.0.1",
"winrt-Windows.Data.Xml.Dom<=2.0.1",
"winrt-Windows.Foundation<=2.0.1",
"winrt-Windows.Foundation.Collections<=2.0.1",
"winrt-Windows.UI.Notifications<=2.0.1",
"winrt-runtime~=2.0",
"winrt-Windows.Data.Xml.Dom~=2.0",
"winrt-Windows.Foundation~=2.0",
"winrt-Windows.Foundation.Collections~=2.0",
"winrt-Windows.UI.Notifications~=2.0",
]

with open("README.md", "r", encoding="utf-8") as f:
Expand Down

0 comments on commit d032de9

Please sign in to comment.