Skip to content

Commit b44fc77

Browse files
author
FusionSolutions
committed
upload
1 parent 1c45fef commit b44fc77

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install wheel
30+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3031
- name: Build packages
3132
run: |
33+
python setup.py build
3234
python setup.py sdist
3335
python setup.py bdist_wheel
3436
- name: Publish package

fsPacker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.1"
1+
__version__ = "0.2.2"
22
__doc__ = """
33
FS Message Packer v{}
44
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name = "python-fspacker",
24-
version = "0.2.1",
24+
version = "0.2.2",
2525
description = "Fusion Solutions message packer",
2626
keywords = "message pack packer utility fusion solutions fusionsolutions",
2727
author = "Andor `iFA` Rajci - Fusions Solutions KFT",

0 commit comments

Comments
 (0)