Skip to content

Commit 8ed62da

Browse files
committed
new deploy
1 parent 89d83d4 commit 8ed62da

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build manylinux Python wheels
4040
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64
4141
with:
42-
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp31 cp312-cp312'
42+
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
4343

4444
- uses: actions/upload-artifact@master
4545
with:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
import platform
3-
from setuptools import setup, find_packages , Distribution
3+
from setuptools import setup, find_packages , Distribution, Extension
44

55
long_description=\
66
"""============================================================
@@ -47,5 +47,6 @@ def is_pure(self):
4747
package_data={"up_lpg": [executable]},
4848
distclass=BinaryDistribution,
4949
include_package_data=True,
50+
data_files=[('platlib', [f'up_lpg/{executable}'])],
5051
cmdclass={'bdist_wheel': bdist_wheel},
5152
license='APACHE')

0 commit comments

Comments
 (0)