File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,13 @@ jobs:
16
16
deploy :
17
17
18
18
runs-on : ubuntu-latest
19
- strategy :
20
- matrix :
21
- python-version : ['3.8', '3.9', '3.10']
22
19
23
20
steps :
24
21
- uses : actions/checkout@v2
25
- - name : Set up Python ${{ matrix.python-version }}
22
+ - name : Set up Python
26
23
uses : actions/setup-python@v2
27
24
with :
28
- python-version : ${{ matrix.python-version }}
25
+ python-version : ' 3.8 '
29
26
- name : Install dependencies
30
27
run : |
31
28
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 1
- recursive-include fsPacker *.py *.pyi *.so
1
+ recursive-include fsPacker *.py *.pyi *.cpp *.h
Original file line number Diff line number Diff line change 1
- __version__ = "0.2.4 "
1
+ __version__ = "0.2.5 "
2
2
__doc__ = """
3
3
FS Message Packer v{}
4
4
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>
Original file line number Diff line number Diff line change 21
21
22
22
setup (
23
23
name = "python-fspacker" ,
24
- version = "0.2.4 " ,
24
+ version = "0.2.5 " ,
25
25
description = "Fusion Solutions message packer" ,
26
26
keywords = "message pack packer utility fusion solutions fusionsolutions" ,
27
27
author = "Andor `iFA` Rajci - Fusions Solutions KFT" ,
36
36
python_requires = ">=3.8.0" ,
37
37
install_requires = ["Cython" ],
38
38
test_suite = "fsPacker.test" ,
39
- package_data = { "" :["py.typed" , "_fspacker.pyi" ] },
39
+ package_data = { "" :["py.typed" ] },
40
40
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
41
41
"Development Status :: 4 - Beta" ,
42
42
"Topic :: Utilities" ,
You can’t perform that action at this time.
0 commit comments