Skip to content

Commit

Permalink
fix: Upgrade semantic release (#200)
Browse files Browse the repository at this point in the history
* upgrade semantic release

* remove old appveyor stuff

* fix: remove python 2 notice

nobody should even be using 2 anymore
  • Loading branch information
Almenon authored Nov 15, 2024
1 parent 3f5607a commit 7f7a793
Show file tree
Hide file tree
Showing 4 changed files with 5,422 additions and 5,210 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4.1.0
with:
node-version: 16
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Compile typescript
Expand Down
2 changes: 1 addition & 1 deletion PythonExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class PythonExecutor {
}

/**
* starts python_evaluator.py. Will NOT WORK with python 2
* starts python_evaluator.py.
*/
start(finishedStartingCallback) {
this.state = PythonState.Starting
Expand Down
Loading

0 comments on commit 7f7a793

Please sign in to comment.