Skip to content

Commit 1325e44

Browse files
committed
💚 make test pass
1 parent d701fce commit 1325e44

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python_version= '3.6'
88

99
[packages]
1010
pybars3 = "*"
11-
lml = '>=0.1.0'
11+
lml = '>=0.0.9'
1212

1313
[dev-packages]
1414
nose = "*"

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@
5959
# Add any paths that contain custom static files (such as style sheets) here,
6060
# relative to this directory. They are copied after the builtin static files,
6161
# so a file named "default.css" will overwrite the builtin "default.css".
62-
html_static_path = ['static']
62+
html_static_path = ['static']

moban-handlebars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ copyright_year: 2018-2020
1010
license: MIT
1111
dependencies:
1212
- pybars3
13-
- lml>=0.1.0
13+
- lml>=0.0.9
1414
description: "Provide handlebars templating capability to moban."
1515
lint_command: make lint

moban_handlebars/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
import moban.constants as constants
33
from lml.plugin import PluginInfo, PluginInfoChain
44

5-
from moban_handlebars.helpers import HandlebarHelper
65
from moban_handlebars._version import __author__, __version__
7-
from moban_handlebars.partials import register_partial
86

97
PluginInfoChain(__name__).add_a_plugin_instance(
108
PluginInfo(

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pybars3
2-
lml>=0.1.0
2+
lml>=0.0.9

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
INSTALL_REQUIRES = [
6565
"pybars3",
66-
"lml>=0.1.0",
66+
"lml>=0.0.9",
6767
]
6868
SETUP_COMMANDS = {}
6969

0 commit comments

Comments
 (0)