generated from sco1/py-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
800 additions
and
391 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[tool.bumper] | ||
current_version = "0.8.0" | ||
|
||
[[tool.bumper.files]] | ||
file = "./pyproject.toml" | ||
search = 'version = "{current_version}"' | ||
|
||
[[tool.bumper.files]] | ||
file = "./README.md" | ||
search = "pyflysight/{current_version}" |
This file was deleted.
Oops, something went wrong.
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
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,13 @@ | ||
class NoProcessedFlightLogError(Exception): ... | ||
|
||
|
||
class MultipleChildLogsError(Exception): ... | ||
|
||
|
||
class NoLogsFoundError(Exception): ... | ||
|
||
|
||
class NoDeviceStateError(Exception): ... | ||
|
||
|
||
class UnknownDeviceError(Exception): ... |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "pyflysight" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
description = "Helper library for processing FlySight GPS flight logs." | ||
authors = [ | ||
{name = "sco1", email = "[email protected]"} | ||
|
@@ -44,7 +44,6 @@ pyflysight = "pyflysight.cli:pyflysight_cli" | |
[tool.uv] | ||
dev-dependencies = [ | ||
"black~=24.8", | ||
"bump2version~=1.0", | ||
"cogapp~=3.4", | ||
"flake8~=7.1", | ||
"flake8-annotations~=3.1", | ||
|
@@ -53,14 +52,15 @@ dev-dependencies = [ | |
"mkdocs~=1.6", | ||
"mkdocstrings-python~=1.10", | ||
"mypy~=1.11", | ||
"pre-commit~=3.8", | ||
"pre-commit~=4.0", | ||
"pymdown-extensions~=10.9", | ||
"pytest-check~=2.4", | ||
"pytest-cov~=5.0", | ||
"pytest-mock~=3.14", | ||
"pytest-randomly~=3.15", | ||
"pytest~=8.3", | ||
"ruff~=0.6", | ||
"sco1-bumper~=1.0", | ||
"tox~=4.18", | ||
"tox-uv~=1.11", | ||
] | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from pathlib import Path | ||
|
||
SAMPLE_DATA_DIR = Path(__file__).parent / "sample_data" | ||
SAMPLE_DATA_DIR = Path(__file__).parent / "test_data" |
Oops, something went wrong.