Skip to content

Commit 1e7dd06

Browse files
committed
Renames distribution contrib dir to 'extra'
1 parent 1be2414 commit 1e7dd06

11 files changed

+10
-10
lines changed

MANIFEST.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include THANKS
1010
include TODO
1111
include setup.cfg
1212
recursive-include bin *
13-
recursive-include contrib *
13+
recursive-include extra *
1414
recursive-include locale *
1515
recursive-include djcelery *.py
1616
recursive-include djcelery/templates *
@@ -21,7 +21,7 @@ recursive-include requirements *.txt
2121
prune bin/*.pyc
2222
prune tests/*.pyc
2323
prune docs/*.pyc
24-
prune contrib/*.pyc
24+
prune extra/*.pyc
2525
prune djcelery/*.pyc
2626
prune docs/.build
2727
prune examples/*.pyc
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pavement.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ def upload_docs(options):
6565

6666
@task
6767
def autodoc(options):
68-
sh("contrib/release/doc4allmods djcelery")
68+
sh("extra/release/doc4allmods djcelery")
6969

7070

7171
@task
7272
def verifyindex(options):
73-
sh("contrib/release/verify-reference-index.sh")
73+
sh("extra/release/verify-reference-index.sh")
7474

7575

7676
@task
@@ -95,7 +95,7 @@ def flake8(options):
9595
])
9696
def flakeplus(options):
9797
noerror = getattr(options, "noerror", False)
98-
sh("python contrib/release/flakeplus.py djcelery",
98+
sh("python extra/release/flakeplus.py djcelery",
9999
ignore_error=noerror)
100100

101101

@@ -117,7 +117,7 @@ def clean_readme(options):
117117
@task
118118
@needs("clean_readme")
119119
def readme(options):
120-
sh("%s contrib/release/sphinx-to-rst.py docs/introduction.rst \
120+
sh("%s extra/release/sphinx-to-rst.py docs/introduction.rst \
121121
> README.rst" % (sys.executable, ))
122122
sh("ln -sf README.rst README")
123123

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ sitepackages = False
99
basepython = python2.7
1010
deps = -r{toxinidir}/requirements/default.txt
1111
-r{toxinidir}/requirements/test.txt
12-
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
12+
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
1313
env TOXINIDIR="{toxinidir}" python setup.py citest
1414

1515
[testenv:py26]
1616
basepython = python2.6
1717
deps = -r{toxinidir}/requirements/default.txt
1818
-r{toxinidir}/requirements/test.txt
19-
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
19+
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
2020
env TOXINIDIR="{toxinidir}" python setup.py citest
2121

2222
[testenv:py25]
2323
basepython = python2.5
2424
deps = -r{toxinidir}/requirements/default.txt
2525
-r{toxinidir}/requirements/test.txt
26-
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
26+
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
2727
env TOXINIDIR="{toxinidir}" python setup.py citest
2828

2929

@@ -34,5 +34,5 @@ deps = -r{toxinidir}/requirements/default.txt
3434
https://github.com/celery/kombu/zipball/master
3535
https://github.com/celery/celery/zipball/master
3636
https://github.com/django/django/zipball/master
37-
commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
37+
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
3838
env TOXINIDIR="{toxinidir}" python setup.py citest

0 commit comments

Comments
 (0)