Skip to content

Commit

Permalink
Acquire webassets via Flask-Assets.
Browse files Browse the repository at this point in the history
Flask-Assets is currently at 0.8 and requires webassets==0.8,
while webassets==0.9 is the current release. Coaster doesn't ask
for a specific version and 0.9 is the default candidate,
which is breaking installation of Flask-Assets downstream.
  • Loading branch information
jace committed Nov 21, 2013
1 parent 5d1d808 commit c5599f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coaster/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from collections import defaultdict
# Version is not used here but is made available for others to import from
from semantic_version import Version, Spec
from webassets import Bundle
from flask.ext.assets import Bundle

_VERSION_SPECIFIER_RE = re.compile('[<=>!]')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
'Flask',
'BeautifulSoup',
'simplejson',
'webassets',
'Flask-Assets',
'semantic_version',
'pytz',
'markdown',
Expand Down

0 comments on commit c5599f0

Please sign in to comment.