Skip to content

Commit 8570209

Browse files
committed
Version 0.1.2
1 parent 4926c4e commit 8570209

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "py-ami-client"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Python Asterisk Management Interface Client"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
@@ -18,7 +18,7 @@ classifiers = [
1818
"Operating System :: OS Independent",
1919
]
2020
dependencies = [
21-
"classmods==0.3.3",
21+
"classmods==1.0.0",
2222
]
2323
requires-python = ">=3.9"
2424

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classmods==0.3.3
1+
classmods==1.0.0
22

33
python-dotenv
44
pytest

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
setup(
44
name='py-ami-client',
5-
version='0.1.1',
5+
version='0.1.2',
66
license="MIT",
77
description='Python Asterisk Management Interface Client',
88
author='Radin-System',
99
author_email='technical@rsto.ir',
1010
url='https://github.com/Radin-System/py-ami-client',
1111
install_requires=[
12-
"classmods==0.3.3",
12+
"classmods==1.0.0",
1313
],
1414
packages=find_packages(exclude=['test', 'test.*']),
1515
include_package_data=True,

test/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
from ami_client.operation.event import VarSet, Newexten
55

66
def test_load_env():
7+
ENVMod.load_dotenv()
78
ENVMod.save_example()
89
ENVMod.sync_env_file()
910

1011
def test_create_client():
11-
ENVMod.load_dotenv()
1212
ami_client = AMIClient(**ENVMod.load_args(AMIClient.__init__))
1313
ami_client.add_blacklist([VarSet, Newexten])
1414
assert ami_client

0 commit comments

Comments
 (0)