Skip to content

Commit

Permalink
Changes for release 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Clarke authored and Christopher Clarke committed Mar 27, 2024
1 parent d3aba86 commit 5785990
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 18 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Contributors
* `Vincent Toupet <https://github.com/vtoupet>`_
* `Anton Ian Sipos <https://github.com/aisipos>`_
* `Thomas Grainger <https://github.com/graingert/>`_
* `Ryan Smith <https://github.com/bixbyr/>`_

What's New
===========
Expand Down
2 changes: 1 addition & 1 deletion django_pandas/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.6'
__version__ = '0.6.7'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
)
MAJOR = 0
MINOR = 6
MICRO = 6
MICRO = 7

VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

Expand Down
25 changes: 9 additions & 16 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,33 +1,26 @@
[tox]
envlist =
py2.7-django{18,19,110,111},
py3.5-django{18,19,110,111,20,21},
py3.6-django{111,20,21,22,30,31,32},
py3.7-django{20,21,22,30,31,32}
py3.8-django{20,21,22,30,31,32}
py3.9-django{20,21,22,30,31,32}
py3.10-django{32}
py3.7-django{30,31,32,40,41,42}
py3.8-django{30,31,32,40,41,42}
py3.9-django{30,31,32,40,41,42}
py3.10-django{30,31,32,40,41,42}

[testenv]
basepython =
py2.7: python2.7
py3.5: python3.5
py3.6: python3.6
py3.7: python3.7
py3.8: python3.8
py3.9: python3.9
py3.10: python3.10
py3.11: python3.11
deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
extras = test

commands = coverage run -a runtests.py
coverage report -m

0 comments on commit 5785990

Please sign in to comment.