Skip to content

Commit 54ddfdc

Browse files
committed
move to git. fix py3.2. added py3.4 to travis.
1 parent 2d2b883 commit 54ddfdc

File tree

15 files changed

+35
-109
lines changed

15 files changed

+35
-109
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
*.pyc
2-
tests/data/*
2+
tests/data/*
3+
.doit.db
4+
doit.egg-info
5+
MANIFEST
6+
revision.txt

.hgignore

Lines changed: 0 additions & 35 deletions
This file was deleted.

.hgtags

Lines changed: 0 additions & 27 deletions
This file was deleted.

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "2.7"
55
- "3.2"
66
- "3.3"
7+
- "3.4"
78
# - 'pypy' # dbm test fails, remove for now...
89

910
before_install:

CHANGES

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
Changes
44
=======
55

6-
0.26.dev
7-
=============
6+
0.26.0 (*2014-08-30*)
7+
======================
88

9+
- moved development to git/github
910
- `uptodate` callable "magic" arguments `task` and `values` are now optional
1011
- added command `info` to display task metadata
1112
- command `clean` smarter execution order

README.rst

Lines changed: 5 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ README
44

55
.. display some badges
66
7-
.. image:: https://pypip.in/v/doit/badge.png
8-
:target: https://pypi.python.org/pypi/doit
7+
.. disable as this is showing the wrong version number
8+
.. image:: https://pypip.in/v/doit/badge.png
9+
:target: https://pypi.python.org/pypi/doit
910
1011
.. image:: https://pypip.in/d/doit/badge.png
1112
:target: https://pypi.python.org/pypi/doit
@@ -27,10 +28,9 @@ execute any kind of task
2728
Project Details
2829
===============
2930

30-
- Source code & Project management on bitbucket - https://bitbucket.org/schettino72/doit
31+
- Project management on github - https://github.com/pydoit/doit
3132
- Website & docs - http://pydoit.org
3233
- Discussion group - https://groups.google.com/forum/#!forum/python-doit
33-
- Official github mirror at - https://github.com/pydoit/doit
3434

3535
license
3636
=======
@@ -66,7 +66,7 @@ dependencies
6666

6767
Tools required for development:
6868

69-
- mercurial * VCS
69+
- git * VCS
7070
- py.test * unit-tests
7171
- mock * unit-tests
7272
- coverage * code coverage
@@ -131,31 +131,6 @@ The website will also includes epydoc generated API documentation.
131131
contributing
132132
==============
133133

134-
On bitbucket create pull requests on ``default`` branch.
135-
136134
On github create pull requests using a named feature branch.
137135

138136

139-
github mirror setup
140-
=====================
141-
142-
This is only needed if you will manage both upstream in github and bitbucket.
143-
For using github only just use `git` normally and ignore it is a mirror.
144-
145-
* install hg-git (http://hg-git.github.io/) ``sudo pip install hg-git``.
146-
147-
* enable the extension. on ``~/.hgrc``::
148-
149-
[extensions]
150-
hggit =
151-
152-
* add a named path ``github`` on ``doit/.hg/hgrc``::
153-
154-
[paths]
155-
default = https://bitbucket.org/schettino72/doit
156-
github = git+ssh://[email protected]/pydoit/doit.git
157-
158-
* make sure you have a ssh key registered on github ::
159-
160-
$ hg push github
161-

TODO.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
see
33

4-
https://bitbucket.org/schettino72/doit/issues?status=new&status=open
4+
https://github.com/pydoit/doit/issues
55

66
0.X
77
----------

doc/_templates/layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
<li><a href="{{ pathto('index') }}">Home</a>&nbsp;|&nbsp;</li>
5656
<li><a href="{{ pathto('contents') }}">Documentation</a>&nbsp;|&nbsp;</li>
5757
<!-- TODO news -->
58-
<li><a class="external-link" href="https://bitbucket.org/schettino72/doit/src">Code</a>&nbsp;|&nbsp;</li>
59-
<li><a class="external-link" href="https://bitbucket.org/schettino72/doit/issues?status=new&status=open">Issues</a>&nbsp;|&nbsp;</li>
58+
<li><a class="external-link" href="https://github.com/pydoit/doit">Code</a>&nbsp;|&nbsp;</li>
59+
<li><a class="external-link" href="https://github.com/pydoit/doit/issues">Issues</a>&nbsp;|&nbsp;</li>
6060
<li><a class="external-link" href="http://pypi.python.org/pypi/doit">Download</a>&nbsp;|&nbsp;</li>
6161
<li><a class="external-link" href="http://groups.google.co.in/group/python-doit">Forum</a></li>
6262
{% endblock %}

doc/cmd_run.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ it will have the same effect as executing
9595
9696
$ doit --continue --reporter json my_task_1 my_task_2
9797
98-
You need to check `doit_cmd.py <https://bitbucket.org/schettino72/doit/src/tip/doit/doit_cmd.py>`_ to find out how parameter maps to config names.
98+
You need to check `doit_cmd.py
99+
<https://github.com/pydoit/doit/blob/master/doit/doit_cmd.py>`_ to find out how
100+
parameter maps to config names.
99101

100102
.. note::
101103

@@ -204,7 +206,11 @@ Apart from the default it also includes:
204206
custom reporter
205207
-----------------
206208

207-
It is possible to define your own custom reporter. Check the code on `doit/reporter.py <https://bitbucket.org/schettino72/doit/src/tip/doit/reporter.py>`_ ... It is easy to get started by sub-classing the default reporter as shown below. The custom reporter must be configured using DOIT_CONFIG dict.
209+
It is possible to define your own custom reporter. Check the code on
210+
`doit/reporter.py
211+
<https://github.com/pydoit/doit/blob/master/doit/reporter.py>`_ ... It is easy
212+
to get started by sub-classing the default reporter as shown below. The custom
213+
reporter must be configured using DOIT_CONFIG dict.
208214

209215
.. literalinclude:: tutorial/custom_reporter.py
210216

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '0.25'
58+
version = '0.26'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.25'
60+
release = '0.26'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

0 commit comments

Comments
 (0)