File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 14
14
python-version : ["3.10", "3.11"]
15
15
16
16
steps :
17
- - uses : actions/checkout@v4
17
+ - uses : actions/checkout@v3
18
18
- name : Set up Python
19
- uses : actions/setup-python@v5
19
+ uses : actions/setup-python@v4
20
20
with :
21
21
python-version : ${{ matrix.python-version }}
22
22
- name : Run lint
29
29
python-version : ["3.10", "3.11"]
30
30
31
31
steps :
32
- - uses : actions/checkout@v4
32
+ - uses : actions/checkout@v3
33
33
- name : Set up Python
34
- uses : actions/setup-python@v5
34
+ uses : actions/setup-python@v3
35
35
with :
36
36
python-version : ${{ matrix.python-version }}
37
37
- name : Run doctests
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@v4
15
+ - uses : actions/checkout@v3
16
16
with :
17
17
fetch-depth : 0
18
- - uses : actions/setup-python@v5
18
+ - uses : actions/setup-python@v4
19
19
with :
20
20
python-version : 3.11
21
21
- name : Build the sdist and the wheel
40
40
echo "Checking import and version number (on release)"
41
41
venv-bdist/bin/python -c "import causalpy; assert causalpy.__version__ == '${{ github.ref_name }}' if '${{ github.ref_type }}' == 'tag' else causalpy.__version__; print(causalpy.__version__)"
42
42
cd ..
43
- - uses : actions/upload-artifact@v4
43
+ - uses : actions/upload-artifact@v3
44
44
with :
45
45
name : artifact
46
46
path : dist/*
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@v5
63
+ - uses : actions/setup-python@v4
64
64
with :
65
65
python-version : 3.11
66
66
- name : Test pip install from test.pypi
You can’t perform that action at this time.
0 commit comments