Skip to content

Commit df70b03

Browse files
authored
feat: support python 3.13 (denosaurs#77)
1 parent cf7a8a1 commit df70b03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
uses: actions/setup-python@v2
6363
if: ${{ matrix.os == 'windows-latest' }}
6464
with:
65-
python-version: '3.12'
65+
python-version: '3.13'
6666

6767
- name: Install NumPy
6868
if: ${{ matrix.os != 'macos-latest' }}

src/ffi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { postSetup } from "./util.ts";
33

44
const searchPath: string[] = [];
55

6-
const SUPPORTED_VERSIONS = [[3, 12], [3, 11], [3, 10], [3, 9], [3, 8]];
6+
const SUPPORTED_VERSIONS = [[3, 13], [3, 12], [3, 11], [3, 10], [3, 9], [3, 8]];
77
const DENO_PYTHON_PATH = Deno.env.get("DENO_PYTHON_PATH");
88

99
if (DENO_PYTHON_PATH) {

0 commit comments

Comments
 (0)