Skip to content

Commit 46eb7d9

Browse files
authored
Merge pull request #75 from Integration-Automation/dev
Update both version
2 parents e0f64f6 + 70b03f3 commit 46eb7d9

8 files changed

Lines changed: 28 additions & 28 deletions

.github/workflows/webrunner_dev_python3_10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build_dev_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/webrunner_dev_python3_11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build_dev_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/webrunner_dev_python3_9.yml renamed to .github/workflows/webrunner_dev_python3_12.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ permissions:
1313

1414
jobs:
1515
build_dev_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python 3.9
20+
- name: Set up Python 3.12
2121
uses: actions/setup-python@v3
2222
with:
23-
python-version: "3.9"
23+
python-version: "3.12"
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip wheel

.github/workflows/webrunner_stable_python3_10.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build_stable_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/webrunner_stable_python3_11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build_stable_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/webrunner_stable_python3_9.yml renamed to .github/workflows/webrunner_stable_python3_12.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ permissions:
1313

1414
jobs:
1515
build_stable_version:
16-
runs-on: windows-2019
16+
runs-on: windows-latest
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python 3.9
20+
- name: Set up Python 3.12
2121
uses: actions/setup-python@v3
2222
with:
23-
python-version: "3.9"
23+
python-version: "3.12"
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip wheel

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# Rename to build stable version
2-
# This is stable version
1+
# Rename to build dev version
2+
# This is dev version
33
[build-system]
4-
requires = ["setuptools>=61.0"]
4+
requires = ["setuptools"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_web_runner"
9-
version = "0.0.62"
8+
name = "je_web_runner_dev"
9+
version = "0.0.92"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
1313
description = "WEB Automation Framework"
14-
requires-python = ">=3.9"
14+
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
1717
"selenium>=4.0.0",
18-
'requests',
19-
'python-dotenv',
18+
"requests",
19+
"python-dotenv",
2020
"webdriver-manager",
2121
]
2222
classifiers = [
23-
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
2424
"Development Status :: 2 - Pre-Alpha",
2525
"Environment :: Win32 (MS Windows)",
2626
"Environment :: MacOS X",

dev.toml renamed to stable.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# Rename to build dev version
2-
# This is dev version
1+
# Rename to build stable version
2+
# This is stable version
33
[build-system]
4-
requires = ["setuptools"]
4+
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_web_runner_dev"
9-
version = "0.0.91"
8+
name = "je_web_runner"
9+
version = "0.0.63"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
1313
description = "WEB Automation Framework"
14-
requires-python = ">=3.9"
14+
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
1717
"selenium>=4.0.0",
18-
"requests",
19-
"python-dotenv",
18+
'requests',
19+
'python-dotenv',
2020
"webdriver-manager",
2121
]
2222
classifiers = [
23-
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
2424
"Development Status :: 2 - Pre-Alpha",
2525
"Environment :: Win32 (MS Windows)",
2626
"Environment :: MacOS X",

0 commit comments

Comments
 (0)