diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2eeadd673..fe93bc8ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,72 +122,20 @@ jobs: fail-fast: false matrix: include: - # Always support manylinux x86_64 platform - - os: ubuntu-latest - python: 38 - platform_id: manylinux_x86_64 - - os: ubuntu-latest - python: 39 - platform_id: manylinux_x86_64 - - os: ubuntu-latest - python: 310 - platform_id: manylinux_x86_64 - - os: ubuntu-latest - python: 311 - platform_id: manylinux_x86_64 - os: ubuntu-latest python: 312 platform_id: manylinux_x86_64 - # Always support musllinux x86_64 platform - os: ubuntu-latest python: 38 platform_id: musllinux_x86_64 - - os: ubuntu-latest - python: 39 - platform_id: musllinux_x86_64 - - os: ubuntu-latest - python: 310 - platform_id: musllinux_x86_64 - - os: ubuntu-latest - python: 311 - platform_id: musllinux_x86_64 - os: ubuntu-latest python: 312 platform_id: musllinux_x86_64 - # Only support the latest two version for macos platform - - os: macos-latest - python: 311 - platform_id: macosx_x86_64 - mac_arch: x86_64 - - os: macos-latest - python: 312 - platform_id: macosx_x86_64 - mac_arch: x86_64 - - - os: macos-latest - python: 311 - platform_id: macosx_arm64 - mac_arch: arm64 - - os: macos-latest - python: 312 - platform_id: macosx_arm64 - mac_arch: arm64 - - # Only support latest four version for windows platform - - os: windows-latest - python: 39 - platform_id: win_amd64 - - os: windows-latest - python: 310 - platform_id: win_amd64 - os: windows-latest python: 311 platform_id: win_amd64 - - os: windows-latest - python: 312 - platform_id: win_amd64 steps: - name: checkout @@ -214,10 +162,6 @@ jobs: path: PyTAT - name: build wheel for PyTAT env: - CIBW_TEST_REQUIRES: pytest - CIBW_TEST_COMMAND: pytest {project}/PyTAT/tests - CIBW_TEST_SKIP: "*-macosx_arm64" - CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }} CIBW_ARCHS: all diff --git a/PyTAT/PyTAT.hpp b/PyTAT/PyTAT.hpp index b8c6950ea..ebcadb3e9 100644 --- a/PyTAT/PyTAT.hpp +++ b/PyTAT/PyTAT.hpp @@ -45,13 +45,7 @@ namespace py = pybind11; #define TAT_LOOP_ALL_SCALAR_SYMMETRY \ TAT_SINGLE_SYMMETRY_ALL_SCALAR(No) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(Z2) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(U1) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(Fermi) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(FermiZ2) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(FermiU1) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(Parity) \ - TAT_SINGLE_SYMMETRY_ALL_SCALAR(FermiFermi) + TAT_SINGLE_SYMMETRY_ALL_SCALAR(Parity) #define deprecated(message) PyErr_WarnEx(PyExc_DeprecationWarning, message, 1)