File tree Expand file tree Collapse file tree 5 files changed +34
-6
lines changed
Expand file tree Collapse file tree 5 files changed +34
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
3948upload-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/*
Original file line number Diff line number Diff line change 1+
12============
23django-emoji
34============
@@ -47,6 +48,11 @@ Quick start
4748
48494. 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+
5056Settings
5157========
5258
Original file line number Diff line number Diff line change 11from .models import Emoji as emoji_class
22
3- __version__ = '1.3.0.alpha '
3+ __version__ = '1.3.0'
44
55Emoji = emoji_class ()
Original file line number Diff line number Diff line change 88
99setup (
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' ,
2020 install_requires = [
2121 'django' ,
2222 ],
23- test_requires = [
23+ tests_require = [
2424 'django_nose' ,
2525 ],
2626 classifiers = [
You can’t perform that action at this time.
0 commit comments