Compare commits

..

3 Commits

Author SHA1 Message Date
e3169b9e20 bump version to v0.10 2025-04-16 22:20:16 -07:00
35ecbad15e remove old lint 2025-04-16 22:19:21 -07:00
43e01a814d examples will use new gridlock 2025-04-16 22:19:14 -07:00
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@ See the readme or `import meanas; help(meanas)` for more info.
import pathlib import pathlib
__version__ = '0.9' __version__ = '0.10'
__author__ = 'Jan Petykiewicz' __author__ = 'Jan Petykiewicz'

View File

@ -49,7 +49,7 @@ path = "meanas/__init__.py"
[project.optional-dependencies] [project.optional-dependencies]
dev = ["pytest", "pdoc", "gridlock"] dev = ["pytest", "pdoc", "gridlock"]
examples = ["gridlock"] examples = ["gridlock>=2.0"]
test = ["pytest"] test = ["pytest"]
@ -73,7 +73,6 @@ lint.ignore = [
"ANN002", # *args "ANN002", # *args
"ANN003", # **kwargs "ANN003", # **kwargs
"ANN401", # Any "ANN401", # Any
"ANN101", # self: Self
"SIM108", # single-line if / else assignment "SIM108", # single-line if / else assignment
"RET504", # x=y+z; return x "RET504", # x=y+z; return x
"PIE790", # unnecessary pass "PIE790", # unnecessary pass