Commit 1bebe4aa by Florian Apolloner

Initial cleanup.

parent 5dc1176f
...@@ -17,11 +17,3 @@ script: ...@@ -17,11 +17,3 @@ script:
notifications: notifications:
email: false email: false
matrix:
exclude:
- python: "3.2"
env: DJANGO=django==1.4.5 --use-mirrors
- python: "3.2"
env: DJANGO=django==1.3.7 --use-mirrors
...@@ -12,3 +12,4 @@ Frank Wiles ...@@ -12,3 +12,4 @@ Frank Wiles
Jonathan Buchanan Jonathan Buchanan
idle sign <idlesign@yandex.ru> idle sign <idlesign@yandex.ru>
Charles Leifer Charles Leifer
Florian Apolloner <apollo13@apolloner.eu>
Version 0.10 (unreleased)
-------------------------
Version 0.9.3
-------------
* Sorry, no changelog :(
...@@ -28,7 +28,7 @@ Then you can use the API like so:: ...@@ -28,7 +28,7 @@ Then you can use the API like so::
Tags will show up for you automatically in forms and the admin. Tags will show up for you automatically in forms and the admin.
``django-taggit`` requires Django 1.1 or greater. ``django-taggit`` requires Django 1.3 or greater.
For more info checkout out the documentation. And for questions about usage or For more info checkout out the documentation. And for questions about usage or
development you can contact the development you can contact the
......
[wheel]
universal=1 # use py2.py3 tag for pure-python dist
import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
from taggit import VERSION from taggit import VERSION
f = open(os.path.join(os.path.dirname(__file__), 'README.md')) f = open('README.rst')
readme = f.read() readme = f.read()
f.close() f.close()
...@@ -24,7 +23,7 @@ setup( ...@@ -24,7 +23,7 @@ setup(
], ],
}, },
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 3 - Alpha',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
......
VERSION = (0, 9, 3) VERSION = (0, 10, 0, 'alpha', 0)
[tox]
envlist =
py24, py25, py26, py27, pypy, py24-trunk, py25-trunk, py26-trunk, py27-trunk, pypy-trunk, docs
[testenv]
commands =
python setup.py test
deps =
django==1.2.4
# We lied here, these are not really trunk, but rather the 1.3 beta-1, which
# is close enough.
[testenv:py24-trunk]
basepython = python2.4
deps =
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py25-trunk]
basepython = python2.5
deps =
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py26-trunk]
basepython = python2.6
deps =
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:py27-trunk]
basepython = python2.7
deps =
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:pypy-trunk]
basepython = pypy
deps =
http://www.djangoproject.com/download/1.3-rc-1/tarball/
[testenv:docs]
changedir = docs
deps =
sphinx
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees . {envtmpdir}/linkcheck
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment