Skip to content

Commit 8c5c77d

Browse files
committed
Version bump in docs
1 parent a22f004 commit 8c5c77d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/frameworks/flask.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Add these arguments to :file:`setup.py` script::
135135

136136
setup(
137137
# ...,
138-
setup_requires=['libsass >= 0.2.0'],
138+
setup_requires=['libsass >= 0.6.0'],
139139
sass_manifests={
140140
'myapp': ('static/sass', 'static/css', '/static/css')
141141
}

sassutils/distutils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
setup(
1414
# ...,
15-
setup_requires=['libsass >= 0.2.0']
15+
setup_requires=['libsass >= 0.6.0']
1616
)
1717
1818
It will adds :class:`build_sass` command to the :file:`setup.py` script:
@@ -37,7 +37,7 @@
3737
sass_manifests={
3838
'your.webapp': ('static/sass', 'static/css')
3939
},
40-
setup_requires=['libsass >= 0.2.0']
40+
setup_requires=['libsass >= 0.6.0']
4141
)
4242
4343
The option should be a mapping of package names to pairs of paths, e.g.::

0 commit comments

Comments
 (0)