File tree 2 files changed +14
-17
lines changed
2 files changed +14
-17
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Tests
3
3
on :
4
4
push :
5
5
branches :
6
- - master
6
+ - main
7
7
pull_request :
8
8
branches :
9
- - master
9
+ - main
10
10
create :
11
11
tags :
12
12
- ' *'
@@ -23,22 +23,19 @@ jobs:
23
23
fail-fast : false
24
24
matrix :
25
25
os : [ubuntu-latest]
26
- python-version : [3.8]
27
26
28
27
steps :
29
28
- name : Checkout
30
- uses : actions/checkout@v2
29
+ uses : actions/checkout@v4
31
30
32
- - name : Setup conda
33
- uses : conda-incubator /setup-miniconda @v2
31
+ - name : Setup micromamba
32
+ uses : mamba-org /setup-micromamba @v2
34
33
with :
35
- python-version : ${{ matrix.python-version }}
36
- mamba-version : " *"
37
- auto-activate-base : false
38
- channels : conda-forge
39
-
40
- - name : Install dependencies
41
- run : mamba install ipython=7 black
34
+ environment-name : test-env
35
+ create-args : >-
36
+ python=3.13
37
+ ipython
38
+ black
42
39
43
40
- name : Install xeus-python-shell
44
41
run : pip install .
@@ -57,12 +54,12 @@ jobs:
57
54
steps :
58
55
59
56
- name : Checkout
60
- uses : actions/checkout@v2
57
+ uses : actions/checkout@v4
61
58
62
59
- name : Install Python
63
- uses : actions/setup-python@v2
60
+ uses : actions/setup-python@v5
64
61
with :
65
- python-version : 3.9
62
+ python-version : 3.13
66
63
67
64
- name : Install dependencies
68
65
run : |
Original file line number Diff line number Diff line change 19
19
'debugpy>=1.1.0,<2'
20
20
],
21
21
extras_require = {
22
- 'ipython' : ['ipython>=7.21,<9 ' ],
22
+ 'ipython' : ['ipython>=7.21' ],
23
23
'wasm' : ['pyjs>=1.1.0,<2.0.0' ],
24
24
},
25
25
platforms = ['any' ],
You can’t perform that action at this time.
0 commit comments