Skip to content
2 changes: 2 additions & 0 deletions .github/workflows/array_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade numpy mypy==1.0.1 cmake pytest pybind11 scikit-build patchelf tqdm
which cmake
cmake --version
- name: Install pykokkos-base
run: |
cd /tmp
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
Expand All @@ -25,6 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade numpy mypy==1.0.1 cmake pytest pybind11 scikit-build patchelf
cmake --version
- name: Install pykokkos-base
run: |
cd /tmp
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Nightly_Testing_vs_Kokkos_develop
name: Nightly build against Kokkos

on:
schedule:
# 5 am UTC is late evening for current dev
# team
- cron: '00 5 * * *'
workflow_dispatch:

jobs:
test_vs_kokkos_develop:
Expand All @@ -14,9 +15,6 @@ jobs:
python-version: ["3.11"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- run: git checkout develop

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# PyKokkos
[![Test against Kokkos development branch](https://github.com/kokkos/pykokkos/actions/workflows/nightly.yml/badge.svg?branch=main)](https://github.com/kokkos/pykokkos/actions/workflows/nightly.yml)

PyKokkos is a framework for writing high-performance Python code
similar to Numba. In contrast to Numba, PyKokkos kernels are primarily
Expand Down