Release 2.0.0 #14
This file contains hidden or 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
| name: Timed Threads (Windows) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| os: [windows] | |
| # "make doctest" on MS Windows fails without showing much of a | |
| # trace of where things went wrong on Python before 3.11. | |
| python-version: ['3.12'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Timed Threads | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install "setuptools>=70.0.0" packaging pytest | |
| pip install -e .[dev] | |
| - name: Test Timed Threads | |
| run: | | |
| pytest test |