Skip to content

Commit 6498272

Browse files
committed
Set min python version to 3.8 due to use of TypedDict. Change to config init in notify.py.
1 parent 80d8c66 commit 6498272

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Schedule the script to run as often as you like with Task Scheduler/launchd/cron
6060

6161
### Prerequisites
6262

63-
Python >=3.6
63+
Python >=3.8
6464

6565
### Installation
6666

amazon_wishlist_pricewatch/notify.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -214,5 +214,4 @@ def test_notification() -> None:
214214
)
215215

216216

217-
if __name__ == "__main__":
218-
config = get_config()
217+
config = get_config()

setup.cfg

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ classifiers =
1919
Topic :: Utilities
2020
Typing :: Typed
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.6
23-
Programming Language :: Python :: 3.7
2422
Programming Language :: Python :: 3.8
2523
Programming Language :: Python :: 3.9
2624
Programming Language :: Python :: 3 :: Only
@@ -35,7 +33,7 @@ project_urls =
3533
zip_safe = False
3634
setup_requires = setuptools_scm
3735
packages = amazon_wishlist_pricewatch
38-
python_requires = >=3.6, <4
36+
python_requires = >=3.8, <4
3937
install_requires =
4038
beautifulsoup4
4139
requests

0 commit comments

Comments
 (0)