Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable CONTRIBUTING: document need of ctypes

Changeset 5ff2e2021ae5

Parent df04baaf752c

by Steve Borho

Changes to one file · Browse files at 5ff2e2021ae5 Showing diff from parent df04baaf752c Diff from another changeset...

Change 1 of 1 Show Changes Only CONTRIBUTING.txt Stacked
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 == Rules for contributing to TortoiseHg ==    Note that these rules may change together with the code base as the project  evolves. Specifically, the compatibility rules in the default branch may be  different from those in the stable branch.    === Library compatibility ===    Our code base assumes minimum versions of library components as listed below.  That is, our code must not depend on features or API's that were introduced  in any later versions of the respective components.  It may be ok though if some advanced user interface features are available only  if later versions of a library are found to be present at runtime, provided the  application is still reasonably usable with the base library versions listed  below.    PyQt: 4.6    === Python version ===    TortoiseHg needs to run on Python 2.4, to stay consistent with Mercurial  itself. + +Mercurial on Windows requires ctypes, which is included with Python 2.5 +and later releases. If you are using Python 2.4 on Windows, you must +install the ctypes back port.