-
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.
- Updated the Python interface, cleaned up the code, added dunder methods, and implemented mod operation for measurements. - Added floor division in Python. - Enhanced README with new shields and more documentation updates. - Updated version and documentation; improved bool conversion in Python with tests. - Applied auto fixes from pre-commit.com hooks. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7a796be
commit 9d91e0d
Showing
13 changed files
with
405 additions
and
103 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" | |
|
||
[project] | ||
name = "units_llnl" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
description = "Python bindings for the LLNL units library" | ||
readme = "python/README.md" | ||
requires-python = ">=3.10" | ||
|
@@ -14,7 +14,7 @@ license-files = [ | |
"NOTICE" | ||
] | ||
authors = [ | ||
{ name = "phlptp22", email = "[email protected]" }, | ||
{ name = "Philip Top", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
|
@@ -38,6 +38,10 @@ Repository = "https://github.com/llnl/units" | |
Issues = "https://github.com/LLNL/units/issues" | ||
Changelog = "https://github.com/LLNL/units/blob/main/CHANGELOG.md" | ||
|
||
|
||
[project.optional-dependencies] | ||
test = ["pytest"] | ||
|
||
[tool.scikit-build] | ||
# Protect the configuration against future changes in scikit-build-core | ||
minimum-version = "build-system.requires" | ||
|
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.