File: HOWTODIST

package info (click to toggle)
python-odf 1.4.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,620 kB
  • sloc: python: 22,659; javascript: 6,623; makefile: 360; xml: 2; sh: 1
file content (48 lines) | stat: -rw-r--r-- 992 bytes parent folder | download | duplicates (2)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

Rst2html is in the python3-docutils package

Check that pypi can understand the long description

python setup.py --long-description | rst2html > test.html

Create a release tag:

$ cd ~/tmp
$ git clone https://github.com/eea/odfpy.git
$ cd odfpy

Run the automated tests:

Install `tox` via `pip` when running the tests for the first time:

$ pip install tox

Run the tests for all supported python versions:

$ tox

Remove the "dev" marker from the version in setup.py and odf/namespaces.py

$ vi setup.py odf/namespaces.py

~check in the difference locally~

$ git ci -a
$ git tag -a release-1.3.X -m "Tagging the 1.3.X release of the 'odfpy' project."
$ git push origin release-1.3.X
or:
$ git push origin --tags

$ python setup.py build
$ rm tests/odf
$ python setup.py sdist bdist_egg
$ python setup.py sdist bdist_egg upload

Increment the version number and add the "dev" marker.

$ vi setup.py odf/namespaces.py

Check in changes and push them to origin

$ git commit -a
$ git push