File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 26
26
- name : Install dependencies
27
27
run : |
28
28
python -m pip install --upgrade pip
29
- pip install build
30
- - name : Build package
31
- run : python -m build
29
+ pip install wheel
30
+ - name : Build packages
31
+ run : |
32
+ python setup.py sdist
33
+ python setup.py bdist_wheel
32
34
- name : Publish package
33
35
uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
34
36
with :
Original file line number Diff line number Diff line change 1
- __version__ = "0.2.0 "
1
+ __version__ = "0.2.1 "
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 15
15
if have_cython :
16
16
ext_modules = cythonize (
17
17
"fsPacker/_fspacker.cpp" ,
18
- language = "c++" ,
19
18
)
20
19
21
20
pwd = os .path .abspath (os .path .dirname (__file__ ))
22
21
23
22
setup (
24
23
name = "python-fspacker" ,
25
- version = "0.2.0 " ,
24
+ version = "0.2.1 " ,
26
25
description = "Fusion Solutions message packer" ,
27
26
keywords = "message pack packer utility fusion solutions fusionsolutions" ,
28
27
author = "Andor `iFA` Rajci - Fusions Solutions KFT" ,
You can’t perform that action at this time.
0 commit comments