Browse Source

Upgrade dependencies (fswrap, jinja2, smartypants).

*   Bugfix: Fix smartypants to 1.7.x to avoid the breaking
    changes in 1.8.  (Issue #229)
*   Bugfix: Upgrade Jinja to 2.7.1 - this fixes
    mitsuhiko/jinja2#243.
main
Lakshmi Vyasarajan 11 years ago
parent
commit
a35daf4477
5 changed files with 16 additions and 6 deletions
  1. +8
    -0
      CHANGELOG.rst
  2. +1
    -1
      README.rst
  3. +1
    -1
      hyde/version.py
  4. +3
    -2
      requirements.txt
  5. +3
    -2
      setup.py

+ 8
- 0
CHANGELOG.rst View File

@@ -1,3 +1,11 @@
Version 0.8.8-a1 (2013-08-19)
===========================================================

* Bugfix: Fix smartypants to 1.7.x to avoid the breaking
changes in 1.8. (Issue #229)
* Bugfix: Upgrade Jinja to 2.7.1 - this fixes
mitsuhiko/jinja2#243.

Version 0.8.7 (2013-05-30)
============================================================



+ 1
- 1
README.rst View File

@@ -1,4 +1,4 @@
Version 0.8.7
Version 0.8.8-a1

A brand new **hyde**
====================


+ 1
- 1
hyde/version.py View File

@@ -2,4 +2,4 @@
"""
Handles hyde version.
"""
__version__ = '0.8.7'
__version__ = '0.8.8-a1'

+ 3
- 2
requirements.txt View File

@@ -1,8 +1,9 @@
fswrap==0.1.1
fswrap==0.1.2
commando==0.3.4
PyYAML==3.10
Markdown==2.3.1
MarkupSafe==0.18
Pygments==1.6
typogrify==2.0.0
Jinja2==2.7
smartypants<1.8
Jinja2==2.7.1

+ 3
- 2
setup.py View File

@@ -116,14 +116,15 @@ setup(name=PROJECT,
packages=find_packages(),
requires=['python (>= 2.7)'],
install_requires=(
'fswrap==0.1.1',
'fswrap==0.1.2',
'commando==0.3.4',
'PyYAML==3.10',
'Markdown==2.3.1',
'MarkupSafe==0.18',
'Pygments==1.6',
'typogrify==2.0.0',
'Jinja2==2.7'
'smartypants<1.8',
'Jinja2==2.7.1'
),
tests_require=(
'nose', 'mock'


Loading…
Cancel
Save