From 72b179d2b98b659780522547a6c7954dbad2f0a7 Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Tue, 12 Nov 2024 11:12:58 +0900 Subject: [PATCH] Remove numpy-v2 specific github workflow --- .../phono3py-pytest-conda-numpy2.yml | 56 ------------------- 1 file changed, 56 deletions(-) delete mode 100644 .github/workflows/phono3py-pytest-conda-numpy2.yml diff --git a/.github/workflows/phono3py-pytest-conda-numpy2.yml b/.github/workflows/phono3py-pytest-conda-numpy2.yml deleted file mode 100644 index c2e05745..00000000 --- a/.github/workflows/phono3py-pytest-conda-numpy2.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Pytest with openblas and numpy 2.0 - -on: - pull_request: - branches: [ develop ] - -jobs: - build-linux: - runs-on: ubuntu-latest - defaults: - run: - shell: bash -l {0} - strategy: - matrix: - python-version: ["3.12"] - - steps: - - uses: actions/checkout@v4 - # Use conda-incubator/setup-miniconda for precise control of conda infrastructure - - uses: conda-incubator/setup-miniconda@v3 - with: - miniforge-version: latest - - name: Install dependent packages - run: | - conda activate test - conda install --yes python=${{ matrix.python-version }} - conda install --yes matplotlib-base pyyaml "libblas=*=*openblas" openblas h5py "numpy=2" scipy pytest cmake c-compiler cxx-compiler pypolymlp - - name: Install spglib develop branch - run: | - conda activate test - git clone --depth 1 https://github.com/spglib/spglib.git - cd spglib - pip install -e . -vvv - cd .. - - name: Install symfc develop branch - run: | - conda activate test - git clone https://github.com/symfc/symfc.git - cd symfc - pip install -e . -vvv - cd .. - - name: Install phonopy develop branch - run: | - conda activate test - git clone https://github.com/phonopy/phonopy.git - cd phonopy - pip install -e . -vvv - cd .. - - name: Install phono3py - run: | - conda activate test - pip install -e . -vvv - - name: Run pytest - run: | - conda activate test - pytest -v test