diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 8259c29a..8bebe263 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -159,32 +159,33 @@ jobs: name: napari tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 path: superqt - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: repository: napari/napari - path: napari + path: napari-repo fetch-depth: 2 - uses: tlambert03/setup-qt-libs@v1 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: - python-version: '3.9' + python-version: '3.10' - name: install run: | python -m pip install -U pip - python -m pip install -e ./napari[testing,pyqt5] - python -m pip install -e ./superqt + python -m pip install ./superqt + python -m pip install ./napari-repo[testing,pyqt5] - - name: Test napari magicgui + - name: Test napari uses: GabrielBB/xvfb-action@v1 with: - run: python -m pytest --color=yes napari/napari/_qt + working-directory: napari-repo + run: python -m pytest --color=yes napari/_qt check_manifest: runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 0763969f..058a5617 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ # Changelog -## [0.3.4](https://github.com/napari/superqt/tree/0.3.4) (2022-07-24) +## [0.3.5](https://github.com/napari/superqt/tree/0.3.5) (2022-08-17) -[Full Changelog](https://github.com/napari/superqt/compare/v0.3.3...0.3.4) +[Full Changelog](https://github.com/napari/superqt/compare/v0.3.4...0.3.5) + +**Fixed bugs:** + +- fix range slider drag crash on PyQt6 [\#108](https://github.com/napari/superqt/pull/108) ([sfhbarnett](https://github.com/sfhbarnett)) +- Fix float value error in pyqt configuration [\#106](https://github.com/napari/superqt/pull/106) ([mstabrin](https://github.com/mstabrin)) + +## [v0.3.4](https://github.com/napari/superqt/tree/v0.3.4) (2022-07-24) + +[Full Changelog](https://github.com/napari/superqt/compare/v0.3.3...v0.3.4) **Fixed bugs:**