Skip to content
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: 1 addition & 1 deletion .github/workflows/file_automation_dev_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
build_dev_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/file_automation_dev_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
build_dev_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ permissions:

jobs:
build_dev_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.9"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/file_automation_dev_python3_8.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/file_automation_stable_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
build_stable_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/file_automation_stable_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
build_stable_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ permissions:

jobs:
build_stable_version:
runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.9"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/file_automation_stable_python3_8.yml

This file was deleted.

Empty file removed automation_file/gui/__init__.py
Empty file.
20 changes: 0 additions & 20 deletions automation_file/gui/main_widget.py

This file was deleted.

44 changes: 0 additions & 44 deletions automation_file/gui/main_window.py

This file was deleted.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "automation_file"
version = "0.0.26"
name = "automation_file_dev"
version = "0.0.29"
authors = [
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
]
description = ""
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license-files = ["LICENSE"]
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"google-api-python-client",
"google-auth-httplib2",
Expand All @@ -22,7 +22,7 @@ dependencies = [
"tqdm"
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
Expand Down
10 changes: 5 additions & 5 deletions dev.toml → stable.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "automation_file_dev"
version = "0.0.28"
name = "automation_file"
version = "0.0.27"
authors = [
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
]
description = ""
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { text = "MIT" }
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [
"google-api-python-client",
"google-auth-httplib2",
Expand All @@ -22,7 +22,7 @@ dependencies = [
"tqdm"
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
Expand Down