From 7a78f39d6db2f0e808c584bcea0ca5ef390992dc Mon Sep 17 00:00:00 2001 From: Luke Parry Date: Sun, 17 Dec 2023 00:23:02 +0000 Subject: [PATCH] Fix for github action --- .github/workflows/pythonpublish.yml | 6 ++++-- CHANGELOG.md | 3 +-- setup.py | 4 +--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 0101563..7301160 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -17,7 +17,9 @@ jobs: os: [ubuntu-latest, macos-latest, macos-13, windows-latest] exclude: - os: ubuntu-latest - python-version: '3.12' + python-version: '3.12' + - os: macos-13 + python-version: '3.7' steps: - uses: actions/checkout@v2 @@ -39,7 +41,7 @@ jobs: sudo apt-get update -qq -y sudo apt-get install -qq -y libglu1-mesa build-essential libeigen3-dev - name: Install Brew On Mac OS - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-latest' || matrix.os == 'macos-13' run: | brew install eigen - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index d8265f1..afa8a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file. ### Changed -## [0.1.5] - 2023-16-12 +## [0.1.6] - 2023-16-12 ### Added @@ -23,7 +23,6 @@ All notable changes to this project will be documented in this file. ### Changed - ## [0.1.4] - 2023-11-12 Update release for PyClipr and updated dependencies to ClipperLib2 v.1.2. and Eigen 3.4.0 - dependent on diff --git a/setup.py b/setup.py index 3038b3c..d843c19 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ def build_extension(self, ext): setup( name='pyclipr', - version='0.1.5', + version='0.1.6', author='Luke Parry', author_email='dev@lukeparry.uk', url='https://github.com/drlukeparry/pyclipr', @@ -93,8 +93,6 @@ def build_extension(self, ext): zip_safe=False, classifiers=[ 'Programming Language :: Python', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',