From cff739543ba0e7185a34c1935884a32b47fd18d3 Mon Sep 17 00:00:00 2001 From: Tom Gustafsson Date: Mon, 17 Jun 2024 17:10:06 +0300 Subject: [PATCH] remove numpy 2.0 rc tests (numpy 2 released) --- .github/workflows/numpy2.yml | 42 ------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/numpy2.yml diff --git a/.github/workflows/numpy2.yml b/.github/workflows/numpy2.yml deleted file mode 100644 index b226d2ad..00000000 --- a/.github/workflows/numpy2.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: tests with numpy 2 - -on: - pull_request: - push: - branches: master - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.9, '3.10', 3.11, 3.12] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install --pre numpy==2.0.0rc1 - pip install . - - name: Run flake8 - run: | - flake8 skfem - - name: Run sphinx build - run: | - sphinx-build -W -a -b html docs docs/_build - - name: Run sphinx doctests - run: | - sphinx-build -W -a -b doctest docs docs/_build - - name: Run mypy - run: | - mypy skfem - - name: Run pytest - run: | - pytest -k 'not TestEx09 and not TestEx32 and not TestEx49'