File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ classifiers = [
2222 " Programming Language :: Python :: 3.12" ,
2323 " Programming Language :: Python :: 3.13" ,
2424 " Environment :: Console" ,
25- " License :: OSI Approved :: Apache Software License" ,
2625 " Topic :: Software Development :: Testing" ,
2726]
2827requires-python = " >=3.9"
Original file line number Diff line number Diff line change 3333
3434
3535def get_current_version ():
36- call_bash_script ('uv version' )
36+ os . system ('uv version' )
3737
3838
3939def get_new_version ():
@@ -57,7 +57,7 @@ def call_bash_script(cmd):
5757
5858
5959def commit_version_code (new_version_num ):
60- call_bash_script ('git commit {} -m "Bump {}"' .format (VERSION_FILE_PATH , new_version_num ))
60+ call_bash_script ('git commit pyproject.toml uv.lock -m "Bump {}"' .format (new_version_num ))
6161
6262
6363def tag_and_generate_changelog (new_version_num ):
Original file line number Diff line number Diff line change 3939 url = project ['urls' ]['Homepage' ],
4040 package_data = {'appium' : ['py.typed' ]},
4141 packages = find_packages (include = ['appium*' ]),
42- license = project ['license' ][ 'text' ] ,
42+ license = project ['license' ],
4343 classifiers = project ['classifiers' ],
4444 install_requires = project ['dependencies' ],
4545)
You can’t perform that action at this time.
0 commit comments