File tree 11 files changed +10
-10
lines changed
11 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ include THANKS
10
10
include TODO
11
11
include setup.cfg
12
12
recursive-include bin *
13
- recursive-include contrib *
13
+ recursive-include extra *
14
14
recursive-include locale *
15
15
recursive-include djcelery *.py
16
16
recursive-include djcelery/templates *
@@ -21,7 +21,7 @@ recursive-include requirements *.txt
21
21
prune bin/*.pyc
22
22
prune tests/*.pyc
23
23
prune docs/*.pyc
24
- prune contrib /*.pyc
24
+ prune extra /*.pyc
25
25
prune djcelery/*.pyc
26
26
prune docs/.build
27
27
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.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -65,12 +65,12 @@ def upload_docs(options):
65
65
66
66
@task
67
67
def autodoc (options ):
68
- sh ("contrib /release/doc4allmods djcelery" )
68
+ sh ("extra /release/doc4allmods djcelery" )
69
69
70
70
71
71
@task
72
72
def verifyindex (options ):
73
- sh ("contrib /release/verify-reference-index.sh" )
73
+ sh ("extra /release/verify-reference-index.sh" )
74
74
75
75
76
76
@task
@@ -95,7 +95,7 @@ def flake8(options):
95
95
])
96
96
def flakeplus (options ):
97
97
noerror = getattr (options , "noerror" , False )
98
- sh ("python contrib /release/flakeplus.py djcelery" ,
98
+ sh ("python extra /release/flakeplus.py djcelery" ,
99
99
ignore_error = noerror )
100
100
101
101
@@ -117,7 +117,7 @@ def clean_readme(options):
117
117
@task
118
118
@needs ("clean_readme" )
119
119
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 \
121
121
> README.rst" % (sys .executable , ))
122
122
sh ("ln -sf README.rst README" )
123
123
Original file line number Diff line number Diff line change @@ -9,21 +9,21 @@ sitepackages = False
9
9
basepython = python2.7
10
10
deps = -r{toxinidir}/requirements/default.txt
11
11
-r{toxinidir}/requirements/test.txt
12
- commands = {toxinidir}/contrib /release/removepyc.sh {toxinidir}
12
+ commands = {toxinidir}/extra /release/removepyc.sh {toxinidir}
13
13
env TOXINIDIR =" {toxinidir}" python setup.py citest
14
14
15
15
[testenv:py26]
16
16
basepython = python2.6
17
17
deps = -r{toxinidir}/requirements/default.txt
18
18
-r{toxinidir}/requirements/test.txt
19
- commands = {toxinidir}/contrib /release/removepyc.sh {toxinidir}
19
+ commands = {toxinidir}/extra /release/removepyc.sh {toxinidir}
20
20
env TOXINIDIR =" {toxinidir}" python setup.py citest
21
21
22
22
[testenv:py25]
23
23
basepython = python2.5
24
24
deps = -r{toxinidir}/requirements/default.txt
25
25
-r{toxinidir}/requirements/test.txt
26
- commands = {toxinidir}/contrib /release/removepyc.sh {toxinidir}
26
+ commands = {toxinidir}/extra /release/removepyc.sh {toxinidir}
27
27
env TOXINIDIR =" {toxinidir}" python setup.py citest
28
28
29
29
@@ -34,5 +34,5 @@ deps = -r{toxinidir}/requirements/default.txt
34
34
https://github.com/celery/kombu/zipball/master
35
35
https://github.com/celery/celery/zipball/master
36
36
https://github.com/django/django/zipball/master
37
- commands = {toxinidir}/contrib /release/removepyc.sh {toxinidir}
37
+ commands = {toxinidir}/extra /release/removepyc.sh {toxinidir}
38
38
env TOXINIDIR =" {toxinidir}" python setup.py citest
You can’t perform that action at this time.
0 commit comments