Skip to content

Commit

Permalink
Fix for github action
Browse files Browse the repository at this point in the history
  • Loading branch information
drlukeparry committed Dec 17, 2023
1 parent 7fc0932 commit 7a78f39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
url='https://github.com/drlukeparry/pyclipr',
Expand All @@ -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',
Expand Down

0 comments on commit 7a78f39

Please sign in to comment.