From 8ed62daf8cbcbf0ae252e5f29ae0bc46ac7c6898 Mon Sep 17 00:00:00 2001 From: stoppini Date: Thu, 17 Oct 2024 12:50:01 +0200 Subject: [PATCH] new deploy --- .github/workflows/main.yml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e572f82..a1a2b34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,7 +39,7 @@ jobs: - name: Build manylinux Python wheels uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64 with: - python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp31 cp312-cp312' + python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310' - uses: actions/upload-artifact@master with: diff --git a/setup.py b/setup.py index d6322b3..b6fc471 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 import platform -from setuptools import setup, find_packages , Distribution +from setuptools import setup, find_packages , Distribution, Extension long_description=\ """============================================================ @@ -47,5 +47,6 @@ def is_pure(self): package_data={"up_lpg": [executable]}, distclass=BinaryDistribution, include_package_data=True, + data_files=[('platlib', [f'up_lpg/{executable}'])], cmdclass={'bdist_wheel': bdist_wheel}, license='APACHE')