From dace4db2a2ed2bde82bb130e2675142c3776b113 Mon Sep 17 00:00:00 2001 From: TJ Porter Date: Tue, 9 Jan 2024 14:54:10 -0600 Subject: [PATCH] Release pyVoIP v2.0.0a3 [FIX] Fixed more circular imports --- docs/conf.py | 2 +- pyVoIP/VoIP/__init__.py | 7 +------ pyVoIP/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b1538ad..3278840 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = "Tayler J Porter" # The full version, including alpha/beta/rc tags -release = "2.0.0a2" +release = "2.0.0a3" master_doc = "index" diff --git a/pyVoIP/VoIP/__init__.py b/pyVoIP/VoIP/__init__.py index 8149dde..736e626 100644 --- a/pyVoIP/VoIP/__init__.py +++ b/pyVoIP/VoIP/__init__.py @@ -1,6 +1 @@ -from pyVoIP.VoIP import call, phone, status - -CallState = call.CallState -VoIPCall = call.VoIPCall -PhoneStatus = status.PhoneStatus -VoIPPhone = phone.VoIPPhone +__all__ = ["call", "phone", "status"] diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index cc4d3e8..6ceacf2 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -2,7 +2,7 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (2, 0, "0a2") +version_info = (2, 0, "0a3") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index 04e57d8..f8f77d3 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="2.0.0a2", + version="2.0.0a3", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",