support date-strings for motion events too #104
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
name: Test Installing wxmplot, using conda | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
fail-fast: false | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python with Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: latest | |
conda-version: "*" | |
channels: conda-forge,defaults | |
channel-priority: true | |
activate-environment: anaconda-client-env | |
python-version: ${{ matrix.python-version }} | |
- name: Install conda dependencies | |
run: | | |
conda install -y -c conda-forge python=${{ matrix.python-version }} numpy=>1.22 matplotlib=>3.6 wxpython=>4.2 pip pytest | |
conda info -a | |
conda list | |
- name: Install wxmplot with pip | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Test with pytest | |
run: | | |
cd tests | |
pytest |