Skip to content

Commit 89ff32c

Browse files
committed
Version: 1.3b1
1 parent c1e0c1b commit 89ff32c

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

README.rst

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,34 @@ Provides an enumeration Django model field (using IntegerField) with reusable en
1010
Installation
1111
------------
1212

13-
Install django-enumfield in your python environment
13+
Currently, `we test`__ Django versions 1.6-1.8 and Python versions 2.7,3.3-3.5.
14+
15+
Install ``django-enumfield`` in your Python environment:
16+
17+
.. _travis: https://travis-ci.org/5monkeys/django-enumfield
18+
19+
__ travis_
1420

1521
.. code:: sh
1622
1723
$ pip install django-enumfield
1824
25+
For testing with Django 1.9rc1, use
26+
27+
.. code:: sh
28+
29+
$ pip install --pre django-enumfield==1.3b1
30+
31+
If you are looking for native ``enum`` (or ``enum34_``) support, try testing
32+
`Pull Request #26`__ which is planned for Django 1.10+.
33+
34+
.. _pr26: https://github.com/5monkeys/django-enumfield/pull/26
35+
36+
__ pr26_
37+
38+
.. _enum34: https://pypi.python.org/pypi/enum34
39+
40+
1941
Usage
2042
-----
2143

django_enumfield/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 2, 1, 'final', 0)
1+
VERSION = (1, 3, 0, 'beta', 1)
22

33

44
def get_version(version=None):

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def fullsplit(path, result=None):
7070
"Programming Language :: Python :: 2.7",
7171
"Programming Language :: Python :: 3.3",
7272
"Programming Language :: Python :: 3.4",
73+
"Programming Language :: Python :: 3.5",
7374
'Framework :: Django',
7475
"Natural Language :: English",
7576
"Environment :: Web Environment",

0 commit comments

Comments
 (0)