-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Version 0.2 See merge request !44
- Loading branch information
Showing
73 changed files
with
4,779 additions
and
1,139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
PyCanvas Deploy Procedures | ||
========================== | ||
|
||
Pre-Flight Checklist | ||
-------------------- | ||
|
||
- On branch `master` and up-to-date | ||
- All tests pass | ||
- 100% coverage | ||
- `CHANGELOG` is accurate | ||
|
||
Packaging | ||
--------- | ||
|
||
Update version number in `setup.py`. | ||
|
||
Run `python setup.py sdist`. This should create a file in the `dist` directory called something like `pycanvas-0.0.0.tar.gz`. | ||
|
||
Generate Documentation | ||
---------------------- | ||
|
||
In the `docs` directory, run `make clean html`. | ||
|
||
**TODO:** how to publish documentation. | ||
|
||
Deploy | ||
------ | ||
|
||
Commit the new files and the changes to `setup.py` and push. | ||
|
||
Create a merge request from `master` to `stable`, and merge. | ||
|
||
Tag the merge commit with the version number: `git tag -a v0.0.0 -m "Release version 0.0.0" abc1234` | ||
|
||
Push the tag: `git push origin v0.0.0` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
============ | ||
Conversation | ||
============ | ||
|
||
.. autoclass:: pycanvas.conversation.Conversation | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
===== | ||
Group | ||
===== | ||
|
||
.. autoclass:: pycanvas.group.Group | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
============ | ||
Progress | ||
============ | ||
|
||
.. autoclass:: pycanvas.progress.Progress | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = '0.2' | ||
|
||
import exceptions | ||
import canvas | ||
import canvas_object | ||
|
Oops, something went wrong.