File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " py-ami-client"
7- version = " 0.1.1 "
7+ version = " 0.1.2 "
88description = " Python Asterisk Management Interface Client"
99readme = " README.md"
1010license = { file = " LICENSE" }
@@ -18,7 +18,7 @@ classifiers = [
1818 " Operating System :: OS Independent" ,
1919]
2020dependencies = [
21- " classmods==0.3.3 " ,
21+ " classmods==1.0.0 " ,
2222]
2323requires-python = " >=3.9"
2424
Original file line number Diff line number Diff line change 1- classmods == 0.3.3
1+ classmods == 1.0.0
22
33python-dotenv
44pytest
Original file line number Diff line number Diff line change 22
33setup (
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 ,
Original file line number Diff line number Diff line change 44from ami_client .operation .event import VarSet , Newexten
55
66def test_load_env ():
7+ ENVMod .load_dotenv ()
78 ENVMod .save_example ()
89 ENVMod .sync_env_file ()
910
1011def 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
You can’t perform that action at this time.
0 commit comments