@@ -19,7 +19,7 @@ Installing an official release
19
19
------------------------------
20
20
21
21
Official releases are made available from
22
- http ://code.google.com/p /django-tagging/
22
+ https ://pypi.python.org/pypi /django-tagging/
23
23
24
24
Source distribution
25
25
~~~~~~~~~~~~~~~~~~~
@@ -45,11 +45,10 @@ Installing the development version
45
45
46
46
Alternatively, if you'd like to update Django Tagging occasionally to pick
47
47
up the latest bug fixes and enhancements before they make it into an
48
- official release, perform a `Subversion`_ checkout instead. The following
49
- command will check the application's development branch out to an
50
- ``tagging-trunk`` directory::
48
+ official release, clone the git repository instead. The following
49
+ command will clone the development branch to ``django-tagging`` directory::
51
50
52
- svn checkout http:// django-tagging.googlecode.com/svn/trunk/ tagging-trunk
51
+ git clone [email protected] :Fantomas42/ django-tagging.
git
53
52
54
53
Add the resulting folder to your `PYTHONPATH`_ or symlink (`junction`_,
55
54
if you're on Windows) the ``tagging`` directory inside it into a
@@ -61,25 +60,22 @@ opening a Python interpreter and entering the following commands::
61
60
62
61
>>> import tagging
63
62
>>> tagging.VERSION
64
- (0, 3, 'pre' )
63
+ (0, 3, 4, 'final', 0 )
65
64
66
65
When you want to update your copy of the Django Tagging source code, run
67
- the command ``svn update `` from within the ``tagging-trunk `` directory.
66
+ the command ``git pull `` from within the ``django-tagging `` directory.
68
67
69
68
.. caution::
70
69
71
70
The development version may contain bugs which are not present in the
72
71
release version and introduce backwards-incompatible changes.
73
72
74
- If you're tracking trunk, keep an eye on the `CHANGELOG`_ and the
75
- `backwards-incompatible changes wiki page`_ before you update your
76
- copy of the source code.
73
+ If you're tracking git, keep an eye on the `CHANGELOG`_
74
+ before you update your copy of the source code.
77
75
78
- .. _`Subversion`: http://subversion.tigris.org
79
76
.. _`PYTHONPATH`: http://www.python.org/doc/2.5.2/tut/node8.html#SECTION008120000000000000000
80
77
.. _`junction`: http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx
81
- .. _`CHANGELOG`: http://django-tagging.googlecode.com/svn/trunk/CHANGELOG.txt
82
- .. _`backwards-incompatible changes wiki page`: http://code.google.com/p/django-tagging/wiki/BackwardsIncompatibleChanges
78
+ .. _`CHANGELOG`: https://github.com/Fantomas42/django-tagging/blob/develop/CHANGELOG.txt
83
79
84
80
Using Django Tagging in your applications
85
81
-----------------------------------------
0 commit comments