-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for using a scheduler * Extend Qt example * Update example to PySide6 * Fix linting * cleanup repo and ci * add poetry.lock * see if this speeds things up * split into modules and lint * add module level docstrings * Add method to register callback to request flush * Remove unnecessary teardown as WeakSets icw GC is not needed * Add index array to make use of bisect in queue while flushing Also fix bug with self.has.remove * Black Co-authored-by: Berend Klein Haneveld <[email protected]>
- Loading branch information
Showing
16 changed files
with
1,770 additions
and
486 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 |
---|---|---|
|
@@ -4,15 +4,18 @@ on: | |
push: | ||
branches: | ||
- master | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.name }} | ||
test: | ||
name: Lint and test on ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- name: Linux py36 | ||
|
@@ -23,20 +26,76 @@ jobs: | |
pyversion: '3.8' | ||
- name: Linux py39 | ||
pyversion: '3.9' | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.pyversion }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.pyversion }} | ||
- name: Install poetry | ||
run: | | ||
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python | ||
echo "$HOME/.poetry/bin" >> $GITHUB_PATH | ||
run: pip install "poetry>=1.1.8,<1.2" | ||
- name: Install dependencies | ||
run: | | ||
poetry install | ||
- name: Lint (black and flake8) and test | ||
run: | | ||
poetry run test | ||
run: poetry install | ||
- name: Lint | ||
run: poetry run flake8 | ||
- name: Test | ||
run: poetry run pytest --cov=observ --cov-report=term-missing | ||
|
||
build: | ||
name: Build and test wheel | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Install poetry | ||
run: pip install "poetry>=1.1.8,<1.2" | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Build wheel | ||
run: poetry build | ||
- name: Twine check | ||
run: poetry run twine check dist/* | ||
- name: Upload wheel artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: dist | ||
name: dist | ||
|
||
publish: | ||
name: Publish to Github and Pypi | ||
runs-on: ubuntu-latest | ||
needs: [test, build] | ||
if: success() && startsWith(github.ref, 'refs/tags/v') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Download wheel artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: dist | ||
- name: Get version from git ref | ||
id: get_version | ||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | ||
- name: Create GH release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ steps.get_version.outputs.VERSION }} | ||
release_name: Release ${{ steps.get_version.outputs.VERSION }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload release assets | ||
# Move back to official action after fix https://github.com/actions/upload-release-asset/issues/4 | ||
uses: AButler/[email protected] | ||
with: | ||
release-tag: ${{ steps.get_version.outputs.VERSION }} | ||
files: 'dist/*.tar.gz;dist/*.whl' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_PASSWORD }} |
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,4 +1,3 @@ | ||
poetry.lock | ||
*.egg-info/ | ||
__pycache__ | ||
.vscode | ||
|
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
Oops, something went wrong.