remove wrong version tag in main library code

Commit 2fa31d1 · patx · 2025-02-02T23:52:10-05:00

Changeset
2fa31d1ec4c780bc67c7ce6fb93c6a74ff35924a
Parents
a406c2c8f92f9bff3a06f932dcaad26801814195

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/MicroPie.py b/MicroPie.py
index 03c4497..a1e4087 100644
--- a/MicroPie.py
+++ b/MicroPie.py
@@ -1,5 +1,3 @@
-__version__ = "0.9.2"
-
 """
 MicroPie: A simple Python ultra-micro web framework with ASGI
 support. https://patx.github.io/micropie
diff --git a/setup.py b/setup.py
index 0cbcd86..b302aea 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ Links
 from distutils.core import setup
 
 setup(name="MicroPie",
-    version="0.9.2",
+    version="0.9.5",
     description="A ultra micro web framework w/ Jinja2.",
     long_description=__doc__,
     author="Harrison Erd",