From 2dc1ef688e394d7637e233a7c91f39ecbaa1c16d Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Fri, 16 Jan 2026 15:22:33 +0000 Subject: [PATCH] Update MANIFEST.in; remove appveyor.yml CI has been moved to GitHub since https://github.com/spdx/tools-python/issues/267 Remove Travis/CircleCI/AppVeyor files and other no longer existing files from MANIFEST Update filenames in MANIFEST. For example, CHANGLOG.rst (old) --> CHANGELOG.md (new). Signed-off-by: Arthit Suriyawongkul --- MANIFEST.in | 19 +++++++------------ appveyor.yml | 20 -------------------- 2 files changed, 7 insertions(+), 32 deletions(-) delete mode 100644 appveyor.yml diff --git a/MANIFEST.in b/MANIFEST.in index 9c05507fd..bd749b0cf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,21 +1,16 @@ -graft data graft examples -graft spdx +graft src graft tests prune src/spdx_tools.egg-info -include spdx/licenses.json +include .gitignore include README.md -include CHANGELOG.rst +include CHANGELOG.md +include CONTRIBUTING.md +include DOCUMENTATION.md include LICENSE -include MANIFEST.in include setup.py -include setup.cfg -include .gitignore -include MANIFEST.in -include .travis.yml -include circle.yml -include appveyor.yml +include pyproject.toml -global-exclude *.py[co] __pycache__ *.*~ +global-exclude *.py[co] __pycache__ *.*~ .DS_Store .pytest_cache .mypy_cache diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 6a4df0854..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: "{build}" -image: - - Visual Studio 2019 -environment: - matrix: - - PYTHON_EXE: "C:\\Python37-x64\\python.exe" - - PYTHON_EXE: "C:\\Python38-x64\\python.exe" - - PYTHON_EXE: "C:\\Python39-x64\\python.exe" - - PYTHON_EXE: "C:\\Python310-x64\\python.exe" - -install: - - "%PYTHON_EXE% --version" - - "%PYTHON_EXE% -m pip install --upgrade pip" - - "%PYTHON_EXE% -m pip install --upgrade setuptools setuptools_scm wheel build pytest" - - "%PYTHON_EXE% -m pip install --upgrade -e ." - -build: off - -test_script: - - "%PYTHON_EXE% -m pytest"