Skip to content

Commit ac39915

Browse files
committed
Add some actions to manual_test
1 parent ecb5239 commit ac39915

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#! /usr/bin/python3
2+
3+
with open('README.md', 'a+') as f:
4+
f.write('\nHello\n')
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#! /usr/bin/python3
2+
3+
with open('pyproject.toml') as f:
4+
updated_content = f.read().replace(
5+
'python_version = "3.13"',
6+
'python_version = "3.14"'
7+
)
8+
with open('pyproject.toml', 'w') as f:
9+
f.write(updated_content)

0 commit comments

Comments
 (0)