Skip to content

Commit f86da74

Browse files
committed
chore: update uv version
1 parent be8ddf4 commit f86da74

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
]
2827
requires-python = ">=3.9"

script/release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434

3535
def get_current_version():
36-
call_bash_script('uv version')
36+
os.system('uv version')
3737

3838

3939
def get_new_version():
@@ -57,7 +57,7 @@ def call_bash_script(cmd):
5757

5858

5959
def 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

6363
def tag_and_generate_changelog(new_version_num):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
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
)

0 commit comments

Comments
 (0)