Commit 0b1d08d 1 parent d6c9b85 commit 0b1d08d Copy full SHA for 0b1d08d
File tree 4 files changed +18
-0
lines changed
4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1
1
name : Build and upload to PyPI
2
2
3
3
on :
4
+ push :
4
5
pull_request :
5
6
release :
6
7
types :
24
25
pip install build
25
26
python -m build
26
27
28
+ - name : Test install and import
29
+ run : |
30
+ python -m venv ./env
31
+ . ./env/bin/activate
32
+ pip install dist/*.whl
33
+ python -c "import spox"
34
+
27
35
- uses : actions/upload-artifact@v4
28
36
with :
29
37
path : dist/*
Original file line number Diff line number Diff line change 7
7
Change log
8
8
==========
9
9
10
+ 0.10.2 (2023-02-08)
11
+ -------------------
12
+
13
+ **Other changes **
14
+
15
+ - Added ``packaging `` as an explicit dependency.
16
+
17
+
10
18
0.10.1 (2023-02-07)
11
19
-------------------
12
20
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ dependencies:
6
6
# Runtime
7
7
- numpy
8
8
- onnx>=1.14.0
9
+ - packaging
9
10
- python>=3.8
10
11
11
12
# Development
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ requires-python = ">=3.8.0"
35
35
dependencies = [
36
36
" numpy" ,
37
37
" onnx>=1.13" ,
38
+ " packaging" ,
38
39
]
39
40
40
41
[project .urls ]
You can’t perform that action at this time.
0 commit comments