Fix TypeError in RangeSlider
for python >=3.10 (Fix #1906)
#72
Workflow file for this run
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 workflow targets stable released dependencies from PyPI with | |
# minimal dependencies. | |
name: Minimal setup | |
on: pull_request | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install Python packages | |
run: | | |
python -m pip install --upgrade pip wheel | |
python -m pip install .[test] | |
- name: Run test suite | |
run: python -m unittest discover -v traitsui | |
working-directory: ${{ runner.temp }} |