Skip to content

Commit 0976d65

Browse files
committed
keep core stuff
1 parent 6ed5a40 commit 0976d65

1 file changed

Lines changed: 5 additions & 34 deletions

File tree

.github/workflows/pixi-support-actions.yml

Lines changed: 5 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -7,45 +7,12 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
11-
environment: PIXI_API_ACCESS
12-
10+
1311
steps:
1412
- name: Checkout STUMPY
1513
uses: actions/checkout@v4
1614
with:
1715
repository: stumpy-dev/stumpy
18-
19-
- name: Determine Safe Python Version
20-
id: get_safe_python
21-
run: |
22-
echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
23-
24-
- name: Set Up Python
25-
uses: actions/setup-python@v5
26-
with:
27-
python-version: ${{ steps.get_safe_python.outputs.safe_python }}
28-
29-
- name: Display Python Version
30-
run: python -c "import sys; print(sys.version)"
31-
shell: bash
32-
33-
- name: Checkout STUMPY
34-
if: "startsWith(steps.python.outputs.version, env.req-python-version)"
35-
uses: actions/checkout@v4
36-
with:
37-
repository: stumpy-dev/stumpy
38-
39-
- name: Check token
40-
run: |
41-
if [ -z "$TOKEN" ]; then
42-
echo "ERROR--PREFIX_DEV_TOKEN is empty or not accessible!"
43-
exit 1
44-
else
45-
echo "Token is available (length: ${#TOKEN})"
46-
fi
47-
env:
48-
TOKEN: ${{ secrets.PREFIX_DEV_TOKEN }}
4916

5017
- name: Set Up Pixi
5118
uses: prefix-dev/setup-pixi@v0.9.4
@@ -60,6 +27,10 @@ jobs:
6027
- name: Install STUMPY And Other Dependencies
6128
run: pixi install
6229
shell: bash
30+
31+
- name: Show Full Numba Environment
32+
run: python -m numba -s
33+
shell: bash
6334

6435
- name: Unit Tests
6536
run: ./test.sh

0 commit comments

Comments
 (0)