Skip to content

Commit 7a78f39

Browse files
committed
Fix for github action
1 parent 7fc0932 commit 7a78f39

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
1818
exclude:
1919
- os: ubuntu-latest
20-
python-version: '3.12'
20+
python-version: '3.12'
21+
- os: macos-13
22+
python-version: '3.7'
2123

2224
steps:
2325
- uses: actions/checkout@v2
@@ -39,7 +41,7 @@ jobs:
3941
sudo apt-get update -qq -y
4042
sudo apt-get install -qq -y libglu1-mesa build-essential libeigen3-dev
4143
- name: Install Brew On Mac OS
42-
if: matrix.os == 'macos-latest'
44+
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13'
4345
run: |
4446
brew install eigen
4547
- name: Install dependencies

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313

14-
## [0.1.5] - 2023-16-12
14+
## [0.1.6] - 2023-16-12
1515

1616
### Added
1717

@@ -23,7 +23,6 @@ All notable changes to this project will be documented in this file.
2323
### Changed
2424

2525

26-
2726
## [0.1.4] - 2023-11-12
2827

2928
Update release for PyClipr and updated dependencies to ClipperLib2 v.1.2. and Eigen 3.4.0 - dependent on

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def build_extension(self, ext):
7676

7777
setup(
7878
name='pyclipr',
79-
version='0.1.5',
79+
version='0.1.6',
8080
author='Luke Parry',
8181
author_email='dev@lukeparry.uk',
8282
url='https://github.com/drlukeparry/pyclipr',
@@ -93,8 +93,6 @@ def build_extension(self, ext):
9393
zip_safe=False,
9494
classifiers=[
9595
'Programming Language :: Python',
96-
'Programming Language :: Python :: 3.5',
97-
'Programming Language :: Python :: 3.6',
9896
'Programming Language :: Python :: 3.7',
9997
'Programming Language :: Python :: 3.8',
10098
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)