diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe0bb26..db376a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,28 +18,15 @@ jobs: get-archi: strategy: matrix: - python-version: ["3.9", "3.12"] - os: ["macos-latest", "macos-13", "windows-latest", "ubuntu-latest"] + os: ["macos-latest"] fail-fast: false runs-on: ${{ matrix.os }} defaults: run: shell: bash steps: - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - - run: | - echo ${{ matrix }} - uname -a - if [ "${{ startsWith(matrix.os, 'windows') || (startsWith(matrix.os, 'macos') && matrix.python-version == '3.12') }}" == false ]; then - echo "install toulbar2" - fi - - - run: | - pip install matplotlib - python -c "import matplotlib; matplotlib.use('agg'); import matplotlib.pyplot as plt; plt.subplots(); print('agg=OK')" - python -c "import matplotlib; matplotlib.use('tkagg'); import matplotlib.pyplot as plt; plt.subplots(); print('tkagg=OK')" - + - name: install pkgconf + run: | + brew update + brew upgrade + brew install pkgconf