-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replaces `os` with `pathlib.Path` for disk level actions. * Adds `enums.TargetOS` * Bump testing and development to 3.10 * Add development requirements to `pyproject.toml` * Replaces `re.match` with `re.search` for `fastresume` discovery when using Regex patterns * Adds emojis and cleans up INFO and DEBUG log outputs. * Adds `-v` and `--version` for version print.
- Loading branch information
Showing
13 changed files
with
163 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
uses: actions/[email protected] | ||
if: steps.filter.outputs.python == 'true' | ||
with: | ||
python-version: 3.9 | ||
python-version: "3.10" | ||
|
||
- name: Install Tox | ||
if: steps.filter.outputs.python == 'true' | ||
|
@@ -71,7 +71,7 @@ jobs: | |
uses: actions/[email protected] | ||
if: steps.filter.outputs.python == 'true' | ||
with: | ||
python-version: 3.9 | ||
python-version: "3.10" | ||
|
||
- name: Install Coverage & diff_cover | ||
if: steps.filter.outputs.python == 'true' | ||
|
@@ -109,7 +109,7 @@ jobs: | |
uses: actions/[email protected] | ||
if: steps.filter.outputs.python == 'true' | ||
with: | ||
python-version: 3.9 | ||
python-version: "3.10" | ||
|
||
- name: Install Flit | ||
if: steps.filter.outputs.python == 'true' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
python-version: "3.10" | ||
|
||
- name: Install Flit | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from enum import Enum | ||
|
||
|
||
class TargetOS(Enum): | ||
WINDOWS = ["windows"] | ||
POSIX = ["linux", "mac", "unix"] |
Oops, something went wrong.