mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-05-04 11:44:42 +00:00
Include the static directory in the dist packages. Fixes #162
This commit is contained in:
parent
9402b5b62d
commit
9cd3bc8113
5 changed files with 10 additions and 5 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,6 +1,10 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
Version 0.7.10
|
||||
--------------
|
||||
* Re-relased 0.7.9 to include a missing image (Issue #162, thanks @legios89)
|
||||
|
||||
Version 0.7.9
|
||||
-------------
|
||||
* Use language code without country specification for Yandex dest lang (PR #152, thanks @nealtodd)
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ recursive-include rosetta/locale *
|
|||
recursive-include rosetta/tests *
|
||||
recursive-include rosetta/utils *
|
||||
recursive-include rosetta/templates *
|
||||
recursive-include rosetta/static *
|
||||
recursive-include testproject *
|
||||
recursive-include docs *
|
||||
prune rosetta/tests/__pycache__
|
||||
|
|
|
|||
|
|
@ -55,9 +55,9 @@ author = u'Marco Bonetti'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.7.9'
|
||||
version = '0.7.10'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.7.9'
|
||||
release = '0.7.10'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
VERSION = (0, 7, 9)
|
||||
VERSION = (0, 7, 10)
|
||||
|
||||
|
||||
def get_version(svn=False, limit=3):
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -18,8 +18,8 @@ setenv =
|
|||
deps =
|
||||
|
||||
django17: Django==1.7.11
|
||||
django18: Django==1.8.7
|
||||
django19: Django==1.9
|
||||
django18: Django==1.8.11
|
||||
django19: Django==1.9.4
|
||||
py27-django{17,18,19}: python-memcached
|
||||
py35-django{17,18,19}: python3-memcached
|
||||
# py27-django18: pudb
|
||||
|
|
|
|||
Loading…
Reference in a new issue