Skip to content

Commit 63e6674

Browse files
committed
deprecation setup and dev_setup
deprecation setup and dev_setup
1 parent 357f21f commit 63e6674

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

dev_setup.py renamed to deprecation_for_old_python/deprecation_dev_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("README.md", "r") as README:
3+
with open("../README.md", "r") as README:
44
long_description = README.read()
55

66
setuptools.setup(
@@ -32,5 +32,5 @@
3232
]
3333
)
3434

35-
# python dev_setup.py sdist bdist_wheel
35+
# python deprecation_dev_setup.py sdist bdist_wheel
3636
# python -m twine upload dist/*

setup.py renamed to deprecation_for_old_python/deprecation_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("README.md", "r") as README:
3+
with open("../README.md", "r") as README:
44
long_description = README.read()
55

66
setuptools.setup(
@@ -33,5 +33,5 @@
3333
]
3434
)
3535

36-
# python setup.py sdist bdist_wheel
36+
# python deprecation_setup.py sdist bdist_wheel
3737
# python -m twine upload dist/*

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]
1313
description = "GUI Testing Automation Framework"
14-
readme = { file = "README.md", content-type = "text/plain" }
14+
readme = { file = "README.md", content-type = "text/markdown" }
1515
requires-python = ">=3.7"
1616
license = { text = "MIT" }
1717
dependencies = [

pyproject.toml renamed to stable.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]
1313
description = "GUI Testing Automation Framework"
14-
readme = { file = "README.md", content-type = "text/plain" }
14+
readme = { file = "README.md", content-type = "text/markdown" }
1515
requires-python = ">=3.7"
1616
license = { text = "MIT" }
1717
dependencies = [

test/unit_test/generate_report/xml_report_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@
4040
print("\n\n")
4141
execute_action(test_list)
4242
generate_xml_report()
43-
a

0 commit comments

Comments
 (0)