liiight/notifiers

notifiers 1.3.2 doesn't run

dtrodrigues opened this issue · 6 comments

Describe the bug
notifiers entry point does not run

To Reproduce

$ pip install notifiers==1.3.2
$ notifiers 
Traceback (most recent call last):
  File "/usr/local/bin/notifiers", line 5, in <module>
    from notifiers_cli.core import entry_point
ModuleNotFoundError: No module named 'notifiers_cli'

Expected behavior
Not to error

Additional context
Python version: 3.10
OS: any

Oh FML, never publish releases late at night...

Thanks for this, I'll fix asap

@dtrodrigues should be fixed now, please verify

Yup - 1.3.3 looks good. Thanks.

Homebrew/homebrew-core#94871

Thanks. I would love if you could teach me on how to update brew as I'm a bit of a noob in that area. I'll add it to the CI/CD

I haven't used it personally, but you can use https://github.com/mislav/bump-homebrew-formula-action as a GitHub action in your CI/CD pipeline.

https://github.com/cli/cli/blob/v2.5.0/.github/workflows/releases.yml#L174-L180 is how the GitHub cli repo uses the action to do their brew updates and Homebrew/homebrew-core#94249 is what the generated PR looks like.

Alternatively, you can do it from the command line via something like brew bump-formula-pr notifiers --version=1.3.3.

@dtrodrigues will do, thanks a lot!