-
Notifications
You must be signed in to change notification settings - Fork 14
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
6 changed files
with
25 additions
and
21 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
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 |
---|---|---|
|
@@ -61,3 +61,5 @@ target/ | |
|
||
# pyenv python configuration file | ||
.python-version | ||
|
||
.venv/ |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ write_to = "src/grid3d_maps/version.py" | |
name = "grid3d_maps" | ||
description = "Make HC thickness, avg maps, etc directly from 3D props" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Equinor", email = "[email protected]" }, | ||
|
@@ -36,10 +36,10 @@ classifiers = [ | |
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Natural Language :: English", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
] | ||
|
@@ -63,7 +63,6 @@ tests = [ | |
"pylint", | ||
"pytest", | ||
"pytest-cov", | ||
"PyQt5-sip<12.16.0; python_version == '3.8'", | ||
"pytest-runner", | ||
"pytest-xdist", | ||
"rstcheck", | ||
|
@@ -115,18 +114,21 @@ ignore = [ | |
"C901", | ||
] | ||
select = [ | ||
"C", | ||
"E", | ||
"F", | ||
"I", | ||
"PIE", | ||
"Q", | ||
"RET", | ||
"RSE", | ||
"SIM", | ||
"TCH", | ||
"TID", | ||
"W", | ||
# "B", # flake-8-bugbear | ||
"C", # pylint-convention | ||
"E", # pycodestyle-error | ||
"F", # pyflakes | ||
"I", # isort | ||
"NPY", # numpy | ||
"PIE", # flake8-pie | ||
"Q", # flake8-quotes | ||
"RET", # flake8-return | ||
"RSE", # flake8-raise | ||
"SIM", # flake8-simplify | ||
"TCH", # flake8-type-checking | ||
"TID", # flake8-tidy-imports | ||
# "UP", # pyupgrade | ||
"W", # pylint-warnings | ||
] | ||
|
||
[tool.ruff.lint.isort] | ||
|