From 558a39b9771f12d5b43366b6b8af25713bbc5dc0 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Wed, 17 Apr 2024 21:02:55 +1000 Subject: [PATCH] BLD Remove superceded CI actions This is now obsolete (since e19a262ce9f9b7ced61f0a375d959f87523cb582 introduced `wheel.yml`) --- .github/workflows/python-package-macos.yml | 41 --------------------- .github/workflows/python-package-win32.yml | 42 ---------------------- .github/workflows/python-package-win64.yml | 42 ---------------------- 3 files changed, 125 deletions(-) delete mode 100644 .github/workflows/python-package-macos.yml delete mode 100644 .github/workflows/python-package-win32.yml delete mode 100644 .github/workflows/python-package-win64.yml 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/*