generated from linz/template-python-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: clean ubuntu and python versions (#1)
* fix: ci * ci: fix python version and add CODEOWNERS * ci: remove mutmut doesn't work with python later that 3.9 * build: update pyproject.toml * build: pretty format poetry.lock * build: change python version to 3.10 * chore: pretty format toml file Co-authored-by: Megan Davidson <[email protected]>
- Loading branch information
1 parent
41c6176
commit 75bae63
Showing
7 changed files
with
624 additions
and
768 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 @@ | ||
* @linz/li-topo-data-engineering |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
/html/ | ||
/htmlcov/ | ||
/.idea | ||
/.mutmut-cache | ||
/mutmut.xml | ||
*.pyc | ||
__pycache__ | ||
/.pytest_cache | ||
|
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 +1 @@ | ||
3.9.6 | ||
3.10.4 |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,22 +25,32 @@ profile = "black" | |
[tool.mypy] | ||
show_error_codes = true | ||
strict = true | ||
disable_error_code = [ | ||
"import", | ||
] | ||
|
||
[[tool.mypy.overrides]] | ||
module = [ | ||
"linz_logger", | ||
] | ||
ignore_missing_imports = true | ||
|
||
[tool.poetry] | ||
name = "template-python-hello-world" | ||
name = "imagery-scripts" | ||
version = "0.1.0" | ||
description = "A minimal template for Python development" | ||
description = "A collection of scripts for processing imagery" | ||
authors = [ | ||
"Ben Cheng <[email protected]>", | ||
"Blayne Chard <[email protected]>", | ||
"Daniel Silk <[email protected]>", | ||
"Victor Engmark <[email protected]>", | ||
"Paul Fouquet <[email protected]>", | ||
"Alice Fage <[email protected]>", | ||
"Megan Davidson <[email protected]>" | ||
|
||
] | ||
license = "MIT" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
python = "^3.10" | ||
typer = "*" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
@@ -49,7 +59,6 @@ coverage = "*" | |
gitlint = "*" | ||
isort = "*" | ||
language-formatters-pre-commit-hooks = "*" | ||
mutmut = "*" | ||
mypy = "*" | ||
pre-commit = "*" | ||
pylint = "*" | ||
|