diff --git a/.github/workflows/python-package-macos.yml b/.github/workflows/python-package-macos.yml deleted file mode 100644 index b864266c..00000000 --- a/.github/workflows/python-package-macos.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: macOS Package - -on: - push: - tags: - - 'v*' - -jobs: - build: - - runs-on: macos-latest - strategy: - matrix: - python-version: - - "3.6" - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" - - "3.12" - - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine numpy - - name: Build - run: | - python setup.py bdist_wheel - - name: Archive production artifacts - uses: actions/upload-artifact@v4 - with: - name: wheels - path: | - dist/* diff --git a/.github/workflows/python-package-win32.yml b/.github/workflows/python-package-win32.yml deleted file mode 100644 index 9a9cf5c8..00000000 --- a/.github/workflows/python-package-win32.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Windows Package (x86) - -on: - push: - tags: - - 'v*' - -jobs: - build: - - runs-on: windows-latest - strategy: - matrix: - python-version: - - "3.6" - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" - - "3.12" - - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - architecture: 'x86' - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine numpy - - name: Build - run: | - python setup.py bdist_wheel - - name: Archive production artifacts - uses: actions/upload-artifact@v4 - with: - name: wheels - path: | - dist/* diff --git a/.github/workflows/python-package-win64.yml b/.github/workflows/python-package-win64.yml deleted file mode 100644 index 37b42b28..00000000 --- a/.github/workflows/python-package-win64.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Windows Package (x64) - -on: - push: - tags: - - 'v*' - -jobs: - build: - - runs-on: windows-latest - strategy: - matrix: - python-version: - - "3.6" - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" - - "3.12" - - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - architecture: 'x64' - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine numpy - - name: Build - run: | - python setup.py bdist_wheel - - name: Archive production artifacts - uses: actions/upload-artifact@v4 - with: - name: wheels - path: | - dist/*