From f8950e6751896ee08908f90d2fa4604e851cfe7d Mon Sep 17 00:00:00 2001 From: pylover Date: Tue, 7 Dec 2021 00:45:29 +0330 Subject: [PATCH] Fix: CI => PyPI --- Makefile | 4 ++++ turboguard/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bc30a01..15e89df 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ cover: pytest --cov=$(PRJ) tests +.PHONY: dist +dist: + python setup.py sdist + .PHONY: clean clean: python setup.py clean diff --git a/turboguard/__init__.py b/turboguard/__init__.py index d816947..5d4e701 100644 --- a/turboguard/__init__.py +++ b/turboguard/__init__.py @@ -2,7 +2,7 @@ from .core import BlacklistedError -__version__ = '1.0.1' +__version__ = '1.0.2' class Sanitizer: