Skip to content

Commit

Permalink
Fix packaging and linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
coretl committed Jan 14, 2022
1 parent 36b2a6e commit 502e4d0
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ repos:
rev: v2.3.0
hooks:
- id: check-added-large-files
- id: check-yaml
- id: check-merge-conflict

- repo: local
Expand Down
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ dev =
where = src

# Specify any package data to be included in the wheel below.
# [options.package_data]
# ibek =
# subpackage/*.yaml
[options.package_data]
ibek =
helm-template/*/*
helm-template/*
templates/*

[options.entry_points]
# Include a command line script
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions src/ibek/helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@

log = logging.getLogger(__name__)

# TODO: these are not packaged, should move them to src/ibek
HELM_TEMPLATE = Path(__file__).parent.parent.parent / "helm-template"
HELM_TEMPLATE = Path(__file__).parent / "helm-template"
TEMPLATES = Path(__file__).parent / "templates"

schema_modeline = re.compile(r"# *yaml-language-server *: *\$schema=([^ ]*)")
Expand Down
2 changes: 1 addition & 1 deletion src/ibek/ioc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import types
from dataclasses import Field, dataclass, field, make_dataclass
from typing import Any, Dict, List, Mapping, Sequence, Tuple, Type, Union, cast
from typing import Any, Dict, List, Mapping, Sequence, Tuple, Type, cast

from apischema import (
Undefined,
Expand Down

0 comments on commit 502e4d0

Please sign in to comment.