Skip to content

Commit a1c2001

Browse files
author
FusionSolutions
committed
upload
1 parent d2e7c67 commit a1c2001

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@ jobs:
1616
deploy:
1717

1818
runs-on: ubuntu-latest
19-
strategy:
20-
matrix:
21-
python-version: ['3.8', '3.9', '3.10']
2219

2320
steps:
2421
- uses: actions/checkout@v2
25-
- name: Set up Python ${{ matrix.python-version }}
22+
- name: Set up Python
2623
uses: actions/setup-python@v2
2724
with:
28-
python-version: ${{ matrix.python-version }}
25+
python-version: '3.8'
2926
- name: Install dependencies
3027
run: |
3128
python -m pip install --upgrade pip

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
recursive-include fsPacker *.py *.pyi *.so
1+
recursive-include fsPacker *.py *.pyi *.cpp *.h

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name = "python-fspacker",
24-
version = "0.2.4",
24+
version = "0.2.5",
2525
description = "Fusion Solutions message packer",
2626
keywords = "message pack packer utility fusion solutions fusionsolutions",
2727
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
@@ -36,7 +36,7 @@
3636
python_requires = ">=3.8.0",
3737
install_requires = ["Cython"],
3838
test_suite = "fsPacker.test",
39-
package_data = { "":["py.typed", "_fspacker.pyi"] },
39+
package_data = { "":["py.typed"] },
4040
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
4141
"Development Status :: 4 - Beta",
4242
"Topic :: Utilities",

0 commit comments

Comments
 (0)