We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7bc45 commit d81ddb8Copy full SHA for d81ddb8
.github/workflows/cibuildwheel.yml
@@ -48,14 +48,6 @@ jobs:
48
with:
49
python-version: '3.10'
50
51
- # Something changed somewhere that prevents the downloaded-at-build-time
52
- # licenses from being included in built wheels, so pre-download them so
53
- # that they exist before the build and are included.
54
- - name: Pre-download bundled licenses
55
- run: >
56
- curl -Lo LICENSE/LICENSE_QHULL
57
- https://github.com/qhull/qhull/raw/2020.2/COPYING.txt
58
-
59
- name: Install dependencies
60
run: python -m pip install build twine
61
pyproject.toml
@@ -6,14 +6,12 @@ authors = [
6
]
7
description = "Python plotting package"
8
readme = "README.md"
9
-license = { file = "LICENSE/LICENSE" }
10
-dynamic = ["version"]
+dynamic = ["version", "license", "license-files"]
11
classifiers=[
12
"Development Status :: 5 - Production/Stable",
13
"Framework :: Matplotlib",
14
"Intended Audience :: Science/Research",
15
"Intended Audience :: Education",
16
- "License :: OSI Approved :: Python Software Foundation License",
17
"Programming Language :: Python",
18
"Programming Language :: Python :: 3",
19
"Programming Language :: Python :: 3.10",
@@ -70,7 +68,9 @@ dev = [
70
68
build-backend = "mesonpy"
71
69
# Also keep in sync with optional dependencies above.
72
requires = [
73
- "meson-python>=0.13.1",
+ "meson-python @ git+https://github.com/dnicolodi/meson-python@pep639",
+ "meson>=1.6.0rc2",
+ "pyproject-metadata>=0.9.0b7",
74
"pybind11>=2.6,!=2.13.3",
75
"setuptools_scm>=7",
76
0 commit comments