Skip to content

Commit 5c13530

Browse files
authored
Try 3.12 build with prompt-toolkit (#65)
1 parent 3861b21 commit 5c13530

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: trepan3k (ubuntu full)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ['3.12']
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
# Until the next xdis release
25+
# pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
26+
# Until the next pytracer release
27+
# pip install git+https://github.com/rocky/pytracer#egg=tracer
28+
# Until the next pyficache release
29+
# pip install git+https://github.com/rocky/python-filecache#egg=pyficache
30+
pip install -e .[dev,full]
31+
- name: Test trepan3k
32+
run: |
33+
make check

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
25+
# pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
2626
# Until the next pytracer release
27-
pip install git+https://github.com/rocky/pytracer#egg=tracer
27+
# pip install git+https://github.com/rocky/pytracer#egg=tracer
2828
# Until the next pyficache release
29-
pip install git+https://github.com/rocky/python-filecache#egg=pyficache
29+
# pip install git+https://github.com/rocky/python-filecache#egg=pyficache
3030
pip install -e .[dev]
3131
- name: Test trepan3k
3232
run: |

0 commit comments

Comments
 (0)