File tree Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ jobs:
25
25
# Installing the package with "[dev]" flag will install test dependecies as well,
26
26
# enabling us to run pytest.
27
27
run : |
28
- python -m pip install --upgrade pip
29
- python -m pip install wheel
30
- pip install .[dev]
28
+ python3 -m pip install --upgrade pip
29
+ python3 -m pip install wheel pytest
30
+ python3 -m pip install .[dev]
31
31
32
32
- name : Run Python Tests
33
- run : python -m pytest
33
+ run : python3 -m pytest
34
34
35
35
build_and_publish_pypi :
36
36
needs : [python_tests]
@@ -50,11 +50,11 @@ jobs:
50
50
51
51
- name : Install Python build dependencies
52
52
run : |
53
- python -m pip install --upgrade pip
54
- python -m pip install wheel hatch
53
+ python3 -m pip install --upgrade pip
54
+ python3 -m pip install wheel hatch
55
55
56
56
- name : Build Source and Binary wheel distributions
57
- run : python -m hatch build -t wheel
57
+ run : python3 -m hatch build -t wheel
58
58
59
59
- name : Publish to PyPI.
60
60
uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ jobs:
26
26
# Installing the package with "[dev]" flag will install test dependecies as well,
27
27
# enabling us to run pytest.
28
28
run : |
29
- python -m pip install --upgrade pip
30
- python -m pip install wheel
31
- pip install .[dev]
29
+ python3 -m pip install --upgrade pip
30
+ python3 -m pip install wheel pytest
31
+ python3 -m pip install .[dev]
32
32
33
33
- name : Lint with black
34
34
run : black --check .
35
35
36
36
- name : Test with pytest
37
- run : python -m pytest
37
+ run : python3 -m pytest
38
38
39
39
generate_and_upload_code_coverage :
40
40
needs : [python_tests]
52
52
- name : Install Python build dependencies
53
53
run : |
54
54
python -m pip install --upgrade pip
55
- python -m pip install wheel
56
- pip install .[dev]
55
+ python3 -m pip install wheel pytest
56
+ python3 -m pip install .[dev]
57
57
58
58
- name : Generate Code Coverage report for Python code
59
59
run : |
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ build-backend = "hatchling.build"
7
7
8
8
[project ]
9
9
name = " jupyter-matlab-proxy-bash"
10
- version = " 0.5.2 "
10
+ version = " 0.5.3 "
11
11
description = " Jupyter Server Proxy for MATLAB"
12
12
readme = " README.md"
13
13
requires-python = " >=3.7"
You can’t perform that action at this time.
0 commit comments