Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch CI to macos-13 #306

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
platform: [ubuntu-20.04, windows-2019, macos-12, macos-14]
platform: [ubuntu-20.04, windows-2019, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-12, macos-14, windows-2019]
platform: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, windows-2019]
node-version: [16.x, 18.x, 20.x, 22.x]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

strategy:
matrix:
platform: [ubuntu-20.04, macos-12, macos-14, windows-2019]
platform: [ubuntu-20.04, macos-13, macos-14, windows-2019]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

strategy:
matrix:
platform: [ubuntu-latest, macos-12, macos-14]
platform: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:

strategy:
matrix:
platform: [ubuntu-latest, macos-12, macos-14]
platform: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

strategy:
matrix:
platform: [macos-12, windows-2019]
platform: [macos-13, windows-2019]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- ubuntu-24.04
- windows-2019
- windows-2022
- macos-12
- macos-13
- macos-13
- macos-14
node-version: [16.x, 18.x, 20.x, 22.x]
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- ubuntu-24.04
- windows-2019
- windows-2022
- macos-12
- macos-13
- macos-13
- macos-14
node-version: [18.x, 20.x, 22.x]
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-12, macos-14]
platform: [ubuntu-latest, macos-13, macos-14]

steps:
- name: Use Node.js 18.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- ubuntu-24.04
- windows-2019
- windows-2022
- macos-12
- macos-13
- macos-13
- macos-14
node-version: [16.x, 18.x, 20.x, 22.x]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Use Python libraries from Node.js

**Update: since Oct 24 I am homeless and living in my van. I lost access to most of my computer hardware. The eviction from my home has been timed for maximum effect as I was not present when it happened. I have only a single set of clothes and no means to get anything else. Please, if you use my software, consider asking everyone around you if they are taking part in this extortion and why.**

[![ISC](https://img.shields.io/github/license/mmomtchev/pymport)](https://github.com/mmomtchev/pymport/blob/main/LICENSE)
[![Test npm package](https://github.com/mmomtchev/pymport/actions/workflows/test-package.yml/badge.svg)](https://github.com/mmomtchev/pymport/actions/workflows/test-package.yml)
[![Node.js CI](https://github.com/mmomtchev/pymport/actions/workflows/test-dev.yml/badge.svg)](https://github.com/mmomtchev/pymport/actions/workflows/test-dev.yml)
Expand Down
Loading