We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22f004 commit 8c5c77dCopy full SHA for 8c5c77d
docs/frameworks/flask.rst
@@ -135,7 +135,7 @@ Add these arguments to :file:`setup.py` script::
135
136
setup(
137
# ...,
138
- setup_requires=['libsass >= 0.2.0'],
+ setup_requires=['libsass >= 0.6.0'],
139
sass_manifests={
140
'myapp': ('static/sass', 'static/css', '/static/css')
141
}
sassutils/distutils.py
@@ -12,7 +12,7 @@
12
13
14
15
- setup_requires=['libsass >= 0.2.0']
+ setup_requires=['libsass >= 0.6.0']
16
)
17
18
It will adds :class:`build_sass` command to the :file:`setup.py` script:
@@ -37,7 +37,7 @@
37
38
'your.webapp': ('static/sass', 'static/css')
39
},
40
41
42
43
The option should be a mapping of package names to pairs of paths, e.g.::
0 commit comments