Skip to content

Commit

Permalink
fix: failing pypi uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Jul 7, 2024
1 parent 7711e2b commit 3b3f41b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions antispam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
__version__ = "1.9.0"
__version__ = "1.9.1"

import logging
import sys
Expand All @@ -34,7 +34,7 @@

logging.getLogger(__name__).addHandler(logging.NullHandler())
VersionInfo = namedtuple("VersionInfo", "major minor micro releaselevel serial")
version_info = VersionInfo(major=1, minor=9, micro=0, releaselevel="final", serial=0)
version_info = VersionInfo(major=1, minor=9, micro=1, releaselevel="final", serial=0)


if sys.version_info[1] < 8:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def parse_requirements_file(path):


setup(
name="Discord Anti-Spam",
name="Discord-Anti-Spam",
version=version,
author="Skelmis",
author_email="ethan@koldfusion.xyz",
Expand Down

0 comments on commit 3b3f41b

Please sign in to comment.