Skip to content

Commit 17299a9

Browse files
authored
Upgrade to v0.2.1
PyPi build fix.
2 parents af44329 + 1c45fef commit 17299a9

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/python-publish.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
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
3234
- name: Publish package
3335
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3436
with:

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.0"
1+
__version__ = "0.2.1"
22
__doc__ = """
33
FS Message Packer v{}
44
Copyright (C) 2021 Fusion Solutions KFT <contact@fusionsolutions.io>

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@
1515
if have_cython:
1616
ext_modules = cythonize(
1717
"fsPacker/_fspacker.cpp",
18-
language = "c++",
1918
)
2019

2120
pwd = os.path.abspath(os.path.dirname(__file__))
2221

2322
setup(
2423
name = "python-fspacker",
25-
version = "0.2.0",
24+
version = "0.2.1",
2625
description = "Fusion Solutions message packer",
2726
keywords = "message pack packer utility fusion solutions fusionsolutions",
2827
author = "Andor `iFA` Rajci - Fusions Solutions KFT",

0 commit comments

Comments
 (0)