Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cstvis/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

FilterOrConverterReturnValue = TypeVar('FilterOrConverterReturnValue')

@repred(prefer_positional=True) # type: ignore[call-overload]
@repred(prefer_positional=True)
class CallableWrapper(Generic[FilterOrConverterReturnValue]):
matcher = PossibleCallMatcher('.') + PossibleCallMatcher('..')

Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "cstvis"
version = "0.0.7"
version = "0.0.8"
authors = [{ name = "Evgeniy Blinov", email = "zheni-b@yandex.ru" }]
description = 'Incremental change of CST'
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
'printo>=0.0.22',
'sigmatch>=0.0.9',
'metacode>=0.0.6',
'printo>=0.0.29',
'sigmatch>=0.0.10',
'metacode>=0.0.7',
"libcst>=1.1.0 ; python_version == '3.8'",
"libcst>=1.8.6 ; python_version > '3.8'",
]
Expand All @@ -35,6 +35,7 @@ classifiers = [
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Typing :: Typed',
]
keywords = ['CST', 'visitor']

Expand Down
Loading
Loading