Skip to content

Commit

Permalink
Merge branch 'release/v1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fantomas42 committed Feb 13, 2014
2 parents f619b75 + f206901 commit ad5b6e8
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 24 deletions.
20 changes: 15 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
matrix:
exclude:
- python: 3.2
env: DJANGO=1.4
- python: 3.3
env: DJANGO=1.4
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout
- ./bin/buildout versions:django=$DJANGO
before_script:
- ./bin/flake8 emoticons
script:
Expand Down
1 change: 0 additions & 1 deletion buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ eggs = ${buildout:eggs}
[test]
recipe = pbp.recipe.noserunner
eggs = nose
pdbpp
nose-sfd
nose-progressive
${buildout:eggs}
Expand Down
2 changes: 1 addition & 1 deletion emoticons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""django-emoticons"""
__version__ = '1.0'
__version__ = '1.0.1'
__license__ = 'BSD License'

__author__ = 'Fantomas42'
Expand Down
6 changes: 3 additions & 3 deletions emoticons/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@
((';(', ';-(', ';=(', '(cry)'), 'crying.gif'),
((':*', ':-*', ':=*', '(kiss)'), 'kiss.gif'),
((':|', ':-|', ':=|', '(speechless)'), 'speechless.gif'),
((':&', ':-&', ':=&', '(puke)'), 'puke.gif'),
((':-?', ':?', ':=?', '(think)'), 'thinking.gif'),
(('|(', '|-(', '|=(', '(dull)'), 'dull.gif'),
(('|-)', 'I-)', 'I=)', '(snooze)'), 'sleepy.gif'),
(('])', '>)', ']=)', '>=)', '(grin)'), 'evilgrin.gif'),
((':$', ':-$', ':=$', ':">', '(blush)'), 'blush.gif'),
(('])', ']=)', '(grin)'), 'evilgrin.gif'),
((':$', ':-$', ':=$', '(blush)'), 'blush.gif'),
((':D', ':-D', ':=D', ':d', ':-d', ':=d', '(laugh)'), 'bigsmile.gif'),
((':O', ':-O', ':=O', ':o', ':-o', ':=o', '(surprised)'), 'surprised.gif'),
(('8)', '8-)', '8=)', 'B)', 'B-)', 'B=)', '(cool)'), 'cool.gif'),
Expand All @@ -48,6 +47,7 @@
('(envy)', 'envy.gif'),
('(wait)', 'wait.gif'),
('(yawn)', 'yawn.gif'),
('(puke)', 'puke.gif'),
('(sweat)', 'sweating.gif'),
('(doh)', 'doh.gif'),
('(talk)', 'talking.gif'),
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
license=emoticons.__license__,

zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['emoticons.demo']),
classifiers=[
'Framework :: Django',
Expand Down
23 changes: 9 additions & 14 deletions versions.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
django = 1.5.5
djangorecipe = 1.6
django = 1.6.2
djangorecipe = 1.7
blessings = 1.5.1
buildout-versions-checker = 1.1
flake8 = 2.0
buildout-versions-checker = 1.3.1
flake8 = 2.1.0
mccabe = 0.2.1
nose-progressive = 1.5
nose-sfd = 0.1
Expand All @@ -12,17 +12,12 @@ pep8 = 1.4.6
pyflakes = 0.7.3
zc.buildout = 2.2.1
zc.recipe.egg = 2.0.1
futures = 2.1.4
futures = 2.1.6
nose = 1.3.0
six = 1.4.1
Pygments = 1.6
fancycompleter = 0.4
pdbpp = 0.7.2
pyrepl = 0.8.4
python-coveralls = 2.4.0
six = 1.5.2
python-coveralls = 2.4.2
PyYAML = 3.10
argparse = 1.2.1
coverage = 3.7
requests = 2.0.1
coverage = 3.7.1
requests = 2.2.1
sh = 1.09
wmctrl = 0.1

0 comments on commit ad5b6e8

Please sign in to comment.