Skip to content

Commit

Permalink
adds shutup
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 26, 2024
1 parent 267f3e0 commit 0aa4889
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ dependencies = [
# mysql-connector-python 8.3.0
'mysql-connector-python>=8.3.0',
# https://pypi.org/project/bcrypt/
"bcrypt>=4.1.2"
"bcrypt>=4.1.2",
# https://pypi.org/project/shutup/
"shutup>=0.2.0"
]

requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion wikibot3rd/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.1"
__version__ = "0.12.2"
2 changes: 1 addition & 1 deletion wikibot3rd/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Version(object):
name = "py-3rdparty-mediawiki"
version = wikibot3rd.__version__
date = "2020-10-31"
updated = "2024-08-23"
updated = "2024-08-26"

authors = "Wolfgang Fahl, Tim Holzheim"

Expand Down
3 changes: 2 additions & 1 deletion wikibot3rd/wikipush.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
@copyright: Wolfgang Fahl. All rights reserved.
"""

import shutup
shutup.please()
import datetime

# from difflib import Differ
Expand Down

0 comments on commit 0aa4889

Please sign in to comment.