Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
uzairname committed Nov 19, 2023
1 parent 2069938 commit 989632c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import setuptools
from swibin import __version__


version = {}
with open("src/swibin/version.py", "r") as f:
exec(f.read(), version)

version = version["__version__"]

setuptools.setup(
name="swibin",
version=__version__,
version=version,
author="Swibin Team",
author_email="[email protected]",
description="Smart error insights for Python",
Expand Down
3 changes: 1 addition & 2 deletions src/swibin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from .wrapper import with_handler

__version__ = "1.0.6"
from .version import __version__
5 changes: 0 additions & 5 deletions src/swibin/__main__.py

This file was deleted.

1 change: 1 addition & 0 deletions src/swibin/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1.0.7"

0 comments on commit 989632c

Please sign in to comment.