@@ -4,13 +4,22 @@ How to create a distribution of PyLidar.
442. Change the version number in the pylidar/__init__.py. Version number
55 is of the form a.b.c, as discussed below.
66 DON'T FORGET TO COMMIT THIS, BEFORE THE NEXT STEP!!!!
7- 3. Use "hg tag" to add a version number tag, e.g.
8- hg tag pylidar-0.4.0
9- 4. Create the distribution tarball, using
7+ 3. Push the changes to github with "git push".
8+ 4. Check out a clean copy of the repository into /tmp or
9+ somewhere similar and 'cd' into it.
10+ 5. Create the distribution tarball, using
1011 python setup.py sdist --formats=gztar,zip
1112 This creates both a tar.gz and a zip, under a subdirectory called dist
12- 5. Upload these to bitbucket, under the downloads tab.
13-
13+ 6. Create checksums of each of these, e.g.
14+ sha256sum pylidar-1.2.3.tar.gz > pylidar-1.2.3.tar.gz.sha256
15+ sha256sum pylidar-1.2.3.zip > pylidar-1.2.3.zip.sha256
16+ 7. Go to the https://github.com/ubarsc/pylidar/releases page, and create a
17+ new release by pressing "Draft a new release".
18+ You should fill in the following:
19+ Tag version: pylidar-A.B.C
20+ Release Title: Version A.B.C
21+ Upload files: Add the tar.gz and zip files, and their sha256 checksum files.
22+ Click "Publish release"
1423
1524Version Numbers.
1625The TuiView number is structured as A.B.C.
0 commit comments