Skip to content

Commit 5f43683

Browse files
committed
Move fields from setup.py to pyproject. Other stuff.
1 parent d3316c6 commit 5f43683

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ jobs:
155155
python-version: '3.11'
156156
- name: Build sdist
157157
run: |
158+
apt install liblzo2-dev
158159
python -m pip install -U pip
159160
python -m pip install -U build
160161
python -m build -s

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "python-lzo"
1010
version = "1.16"
1111
description = "Python bindings for the LZO data compression library"
1212
readme = "README.md"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
authors = [
1515
{name = "Markus F.X.J. Oberhumer", email = "[email protected]"},
1616
]

setup.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ def run(self):
3434

3535
setup(
3636
name="python-lzo",
37-
version="1.16",
38-
description="Python bindings for the LZO data compression library",
39-
author="Markus F.X.J. Oberhumer",
40-
author_email="[email protected]",
41-
maintainer="Joshua D. Boyd",
42-
maintainer_email="[email protected]",
43-
url="https://github.com/jd-boyd/python-lzo",
4437
license="GNU General Public License (GPL)",
4538
tests_require=['pytest'],
4639
cmdclass={
@@ -53,7 +46,6 @@ def run(self):
5346
include_dirs=[os.path.join(lzo_dir, "include")],
5447
libraries=['lzo2'] if not sys.platform == "win32" else [],
5548
library_dirs=[os.path.join(lzo_dir, "lib")],
56-
#extra_link_args=["-flat_namespace"] if sys.platform == "darwin" else [],
5749
)
5850
],
5951
long_description="""

0 commit comments

Comments
 (0)