-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start with some docs * Started sphinx docs * update to docs * document breaking change more * Dumb emoji * test RTD configuration * Docs now build successfully. Not finished yet, but marked sections as TODO * Update RTD settings * lint * Some clean up * Update .readthedocs.yaml * add more links to setup.py * and black * py.typed * bump version to 0.3.0 * fix changelog Co-authored-by: Matteo Pompili <[email protected]>
- Loading branch information
1 parent
b973cbb
commit ca4ec66
Showing
25 changed files
with
682 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
# You can also specify other tool versions: | ||
# nodejs: "16" | ||
# rust: "1.55" | ||
# golang: "1.17" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
# If using Sphinx, optionally build your docs in additional formats such as PDF | ||
# formats: | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: requirements-dev.txt | ||
- method: pip | ||
path: . | ||
|
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,14 +1,18 @@ | ||
# Changelog | ||
|
||
## [v0.2.2](https://github.com/matpompili/easypubsub/tree/v0.2.2) (Ureleased) | ||
## [v0.3.0](https://github.com/matpompili/easypubsub/tree/v0.3.0) (Unreleased) | ||
|
||
[Full Changelog](https://github.com/matpompili/easypubsub/compare/v0.2.1...main) | ||
- Added documentation to the :obj:`~easypubsub.proxy.Proxy`, :obj:`~easypubsub.subscriber.Subscriber`, and :obj:`~easypubsub.publisher.Publisher` classes. | ||
- Setup Sphinx documentation and Readthedocs. | ||
- Breaking change: :obj:`~easypubsub.proxy.Proxy` now expects first the address for the publishers and then the address for the subscribers, to make it easier to remember (pub-sub). Fixed tests and examples accordingly. | ||
|
||
## [v0.2.1](https://github.com/matpompili/easypubsub/tree/v0.2.1) (2022-07-29) | ||
[Full v0.3.0 Changelog](https://github.com/matpompili/easypubsub/compare/v0.2.1...v0.3.0) | ||
|
||
[Full Changelog](https://github.com/matpompili/easypubsub/compare/v0.2.0...v0.2.1) | ||
## [v0.2.1](https://github.com/matpompili/easypubsub/tree/v0.2.1) (2022-07-29) | ||
|
||
- Fixed a bug for Proxy, where it would not quit using CTRL-C on Windows. | ||
- Added `CHANGELOG.md` to the repository. | ||
- `Proxy` now runs in a separate thread, so it is non-blocking. | ||
- Created a few simple tests. | ||
- Created a few simple tests. | ||
|
||
[Full v0.2.1 Changelog](https://github.com/matpompili/easypubsub/compare/v0.2.0...v0.2.1) |
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,5 +1,7 @@ | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
include requirements-dev.txt | ||
include easypubsub/py.typed | ||
|
||
recursive-include tests * |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.