-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ scikit-build-core 0.11, PEP 639 license expressions, sphinx fixes,…
… more automerge (#604) ## Description This pull request introduces the following changes: - Enabled automerge for minor version updates of stable dependencies and lockfile update PRs to streamline dependency management. - Updated the lockfile to reflect the latest dependency resolutions. - Upgraded the Sphinx dependency for documentation to ensure compatibility. - Adopted PEP 639 license expressions for uniformity and compliance. - Updated to `scikit-build-core` version 0.11 for improved build performance and new features. - Enabled verbose logging for install commands to aid in debugging and transparency. - Updated the pre-commit checks and applied the corresponding suggestions. ## Checklist: - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines
- Loading branch information
Showing
6 changed files
with
160 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"scikit-build-core>=0.10.7", | ||
"scikit-build-core>=0.11.0", | ||
"setuptools-scm>=8.1", | ||
"pybind11>=2.13.6", | ||
"mqt.core>=3.0.0b4", | ||
|
@@ -19,7 +19,8 @@ authors = [ | |
{ name = "Yannick Stade", email = "[email protected]" } | ||
] | ||
keywords = ["MQT", "quantum-computing", "design-automation", "compiler", "clifford-synthesis"] | ||
license = { file = "LICENSE.md" } | ||
license = "MIT" | ||
license-files = ["LICENSE.md"] | ||
|
||
classifiers = [ | ||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", | ||
|
@@ -28,7 +29,6 @@ classifiers = [ | |
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: C++", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
|
@@ -350,7 +350,7 @@ mqt-qmap = { workspace = true } | |
[dependency-groups] | ||
build = [ | ||
"pybind11>=2.13.6", | ||
"scikit-build-core>=0.10.7", | ||
"scikit-build-core>=0.11.0", | ||
"setuptools-scm>=8.1", | ||
"mqt.core>=3.0.0b4", | ||
] | ||
|
@@ -371,8 +371,10 @@ docs = [ | |
"sphinxext-opengraph>=0.9.1", | ||
"ipykernel>=6.29.5", | ||
"nbsphinx>=0.9.6", | ||
"sphinx!=8.2.0", # see https://github.com/spatialaudio/nbsphinx/issues/825 | ||
"sphinx-autodoc-typehints>=2.3.0", | ||
"sphinx>=7.4.7", | ||
"sphinx>=8.1.3; python_version >= '3.10'", | ||
"sphinx>=8.2.3; python_version >= '3.11'", | ||
] | ||
test = [ | ||
"networkx>=3.2.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.