From b8e95e8739045ab4de0f26623c78a207c8c72865 Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Wed, 3 Jul 2024 08:05:41 -0700 Subject: [PATCH] fix(ci): Update the CI and setup.py --- .github/workflows/ci.yaml | 2 +- MANIFEST.in | 6 ++++++ ladybug_vtk/MANIFEST.in | 1 - setup.py | 1 + 4 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in delete mode 100644 ladybug_vtk/MANIFEST.in diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index abc71e3..3bdba91 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: name: Unit tests strategy: matrix: - python-version: ['3.7', '3.10'] + python-version: ['3.10'] os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..047b3ca --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include ladybug_vtk/assets/*.html +recursive-exclude docs * +recursive-exclude .github * +exclude .gitignore +exclude .releaserc.json +exclude deploy.sh diff --git a/ladybug_vtk/MANIFEST.in b/ladybug_vtk/MANIFEST.in deleted file mode 100644 index ef5fca4..0000000 --- a/ladybug_vtk/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -include ladybug_vtk/assets/*.html diff --git a/setup.py b/setup.py index 7c8a2b0..616f3fb 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ include_package_data=True, classifiers=[ "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent"