Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dev and stable #55

Merged
merged 3 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_dev_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_dev_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_dev_python3_8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_dev_python3_9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_stable_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_stable_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_stable_python3_8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/webrunner_stable_python3_9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 7 * * *"

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .idea/WebRunner.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion je_web_runner/utils/logging/loggin_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
stream_handler.setLevel(logging.WARNING)
web_runner_logger.addHandler(stream_handler)
# File handler
file_handler = logging.FileHandler("WEBRunner.log")
file_handler = logging.FileHandler(filename="WEBRunner.log", mode="w")
file_handler.setFormatter(formatter)
web_runner_logger.addHandler(file_handler)
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Rename to build stable version
# This is stable version
# Rename to build dev version
# This is dev version
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "je_web_runner"
version = "0.0.46"
name = "je_web_runner_dev"
version = "0.0.78"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
Expand All @@ -17,11 +17,11 @@ dependencies = [
"selenium>=4.0.0",
'requests',
'python-dotenv',
"webdriver-manager",
"webdriver-manager==3.8.6",
"APScheduler",
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
Expand Down
14 changes: 7 additions & 7 deletions dev.toml → stable.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Rename to build dev version
# This is dev version
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "je_web_runner_dev"
version = "0.0.76"
name = "je_web_runner"
version = "0.0.48"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
Expand All @@ -17,11 +17,11 @@ dependencies = [
"selenium>=4.0.0",
'requests',
'python-dotenv',
"webdriver-manager",
"webdriver-manager==3.8.6",
"APScheduler",
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
Expand Down