File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,16 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- python-version : ["3.10", "3.11"]
14
+ python-version : ["3.10", "3.11", "3.12" ]
15
15
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- name : Set up Python
19
- uses : actions/setup-python@v3
19
+ uses : actions/setup-python@v5
20
20
with :
21
21
python-version : ${{ matrix.python-version }}
22
+ - name : Update pip and setuptools
23
+ run : pip install --upgrade pip setuptools
22
24
- name : Run doctests
23
25
run : |
24
26
pip install -e .[test]
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
12
12
name : Build source distribution
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
with :
17
17
fetch-depth : 0
18
- - uses : actions/setup-python@v4
18
+ - uses : actions/setup-python@v5
19
19
with :
20
20
python-version : 3.11
21
21
- name : Build the sdist and the wheel
60
60
user : __token__
61
61
password : ${{ secrets.TEST_PYPI_API_TOKEN }}
62
62
repository_url : https://test.pypi.org/legacy/
63
- - uses : actions/setup-python@v4
63
+ - uses : actions/setup-python@v5
64
64
with :
65
65
python-version : 3.11
66
66
- name : Test pip install from test.pypi
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ dependencies = [
31
31
" graphviz" ,
32
32
" ipython!=8.7.0" ,
33
33
" matplotlib>=3.5.3" ,
34
- " numpy<1.26.0 " ,
34
+ " numpy" ,
35
35
" pandas" ,
36
36
" patsy" ,
37
37
" pymc>=5.14.0" ,
You can’t perform that action at this time.
0 commit comments