caronc/apprise

Python 3.12.1 breaking with Apprise 1.7.0

mattpackwood opened this issue ยท 3 comments

๐Ÿ“ฃ Notification Service(s) Impacted
Version 1.7.0

๐Ÿž Describe the bug
I am getting errors thrown by 1.7.0, see below..
I did some digging, it seems to me to be related to the version of Python, bear with me:
This is all on "Just my Mac" I have messed with my Ubuntu machine but it is only running Python 3.11 at the moment so not sure if this is a "Just me issue":

  • Apprise 1.6.0 seems to run OK with Python 3.12.1
  • Apprise 1.7.0 seems to break with Python 3.12.1
  • Apprise 1.70 seems to runs OK with Python 3.11.6

I usually have two versions of Python installed, one is from https://www.python.org and the other from Homebrew that supports the various tools I have installed through that (I do not usually do much with the Homebrew version I let Homebrew manage it).

When I uninstalled the 3.12.1 version of python I had running from https://www.python.org Apprise 1.7.0 worked with Python 3.11.6 (which is what Homebrew was providing). Then I got Homebrew to download Apprise 1.6.0 and that runs "fine" with Python 3.12.1 after I reinstalled it...

๐Ÿ’ก Screenshots and Logs
Matt-Packwoods-iMac:~ $ apprise -vv -t "Test Message Title" -b "Test Message Body" --tag pushed_trigger Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.12/bin/apprise", line 8, in <module> sys.exit(main()) ^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/click/core.py", line 1157, in __call__ return self.main(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/click/core.py", line 1078, in main rv = self.invoke(ctx) ^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/click/core.py", line 1434, in invoke return ctx.invoke(self.callback, **ctx.params) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/click/core.py", line 783, in invoke return __callback(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/apprise/cli.py", line 464, in main a.add(AppriseConfig( ^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/apprise/AppriseConfig.py", line 121, in __init__ self.add(paths) File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/apprise/AppriseConfig.py", line 206, in add instance = AppriseConfig.instantiate( ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/apprise/AppriseConfig.py", line 333, in instantiate schema = config.ConfigFile.ConfigFile.protocol ^^^^^^^^^^^^^^^^^ AttributeError: module 'apprise.config' has no attribute 'ConfigFile'. Did you mean: 'ConfigBase'?

๐Ÿ’ป Your System Details:

  • OS: macOS 14.2.1 (23C71)
  • Python Version: Python 3.12.1 OR Python 3.11.6

๐Ÿ”ฎ Additional context
Add any other context about the problem here.

I got one of my PC's pushed up to Python 3.12.1 and it does NOT have an issue with Python 3.12.1 and Apprise 1.7.0

caronc commented

From what i can tell; the code works fine in Python v3.12; instructions can be seen in attached PR

Agreed, the issue seems to be my messed up environment (again) - I will resist the temptation to pull the trigger next time...