From e1b496d4fed4045398dda5bc67b447ac8e8047cb Mon Sep 17 00:00:00 2001 From: wboykinm Date: Thu, 19 Dec 2024 11:45:43 -0500 Subject: [PATCH] Deprecate appveyor --- appveyor.yml | 28 ---------------------------- setup.cfg | 4 ++++ 2 files changed, 4 insertions(+), 28 deletions(-) delete mode 100644 appveyor.yml create mode 100644 setup.cfg diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 337cfe7..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,28 +0,0 @@ -environment: - global: - CIBW_SKIP: "cp27* cp36* pp* *-win32 *-manylinux_i686" - CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*" - - matrix: - - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu - APPVEYOR_JOB_NAME: "python39-x64-ubuntu" - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 - APPVEYOR_JOB_NAME: "python39-x64-vs2022" - - APPVEYOR_BUILD_WORKER_IMAGE: macos - APPVEYOR_JOB_NAME: "python39-x64-macos" - -stack: python 3.9 - -init: -- cmd: set PATH=C:\Python39;C:\Python39\Scripts;%PATH% - -install: python -m pip install cibuildwheel==1.7.1 - -build_script: - - python -m cibuildwheel --output-dir wheelhouse --platform linux - - python -m cibuildwheel --output-dir wheelhouse --platform windows - - python -m cibuildwheel --output-dir wheelhouse --platform macos - -artifacts: - - path: "wheelhouse\\*.whl" - name: Wheels diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d8e9a6f --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +[metadata] +# This includes the license file(s) in the wheel. +# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file +license_files = LICENSE \ No newline at end of file