Skip to content

Commit

Permalink
feat: Update DecoratorsProcessor classname and version
Browse files Browse the repository at this point in the history
  • Loading branch information
lfvdavid committed Mar 26, 2024
1 parent 047e04d commit efe2c98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
requires-python = ">=3.10"

dependencies = [
"reqstool-python-decorators == 0.0.1",
"reqstool-python-decorators == 0.0.2",
"ruamel.yaml==0.18.6",
"hatchling>=1.20.0",
]
Expand Down
6 changes: 3 additions & 3 deletions src/reqstool_python_hatch_plugin/build_hook/hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


from hatchling.builders.hooks.plugin.interface import BuildHookInterface
from reqstool_python_decorators.processors.decorator_processor import ProcessDecorator
from reqstool_python_decorators.processors.decorator_processor import DecoratorProcessor


class Decorator(BuildHookInterface):
Expand Down Expand Up @@ -56,5 +56,5 @@ def initialize(self, version, build_data):
"""
path = self.get_config_path

process_decorator = ProcessDecorator()
process_decorator.process_decorated_data(path_to_python_files=path)
decorator_processor = DecoratorProcessor()
decorator_processor.process_decorated_data(path_to_python_files=path)

0 comments on commit efe2c98

Please sign in to comment.