Skip to content

Commit fdbbfc4

Browse files
committed
Release 1.3 with Python 3 support
1 parent b77072e commit fdbbfc4

File tree

5 files changed

+34
-6
lines changed

5 files changed

+34
-6
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v1.3 (2014-09-07)
2+
3+
## features
4+
5+
* Python 3 support
6+
* test suite is now being run through tox for for all supported
7+
versions of Django and Python. 1.4 to 1.7 with their respective
8+
versions of Python.
9+
10+
111
# v1.2 (2014-04-09)
212

313
## features

Makefile

+15-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,20 @@ coverage-py-html:
3333
coverage run test/runtests.py && \
3434
coverage html --omit="admin.py,*.virtualenvs/*,./test/*"
3535

36-
clean:
37-
find . -name '*.pyc' | xargs rm -f
36+
clean-pyc:
37+
find . -name '*.pyc' -exec rm -f {} +
38+
find . -name '*.pyo' -exec rm -f {} +
39+
find . -name '*~' -exec rm -f {} +
40+
41+
clean-build:
42+
rm -fr build/
43+
rm -fr dist/
44+
rm -fr *.egg-info
45+
46+
clean: clean-pyc clean-build
3847

3948
upload-package: test
40-
python setup.py sdist upload
49+
pip install twine wheel
50+
python setup.py sdist
51+
python setup.py bdist_wheel
52+
twine upload dist/*

README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
============
23
django-emoji
34
============
@@ -47,6 +48,11 @@ Quick start
4748

4849
4. Visit http://127.0.0.1:8000/emoji/all.json to get a json object with all emojis avilable
4950

51+
Python versions
52+
===============
53+
54+
Support for Django 1.4, 1.5, 1.6 and 1.7 with their respective versions of Python 2/3 support.
55+
5056
Settings
5157
========
5258

emoji/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .models import Emoji as emoji_class
22

3-
__version__ = '1.3.0.alpha'
3+
__version__ = '1.3.0'
44

55
Emoji = emoji_class()

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='django-emoji',
11-
version='1.2.0',
11+
version='1.3.0',
1212
packages=find_packages(exclude=('test',)),
1313
include_package_data=True,
1414
license='BSD License',
@@ -20,7 +20,7 @@
2020
install_requires=[
2121
'django',
2222
],
23-
test_requires=[
23+
tests_require=[
2424
'django_nose',
2525
],
2626
classifiers=[

0 commit comments

Comments
 (0)