Skip to content

Commit e2b4b7b

Browse files
committed
fix: update pyproj.toml to correct __version__ location
1 parent 7947d65 commit e2b4b7b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ResultContainer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
__status__ = "Development" # set to "Prototype", "Development", "Production"
7979
__url__ = "https://github.com/ScottBoyce-Python/ResultContainer"
8080
__description__ = "ResultContainer is a Result class that mimics the behavior of Rust's Result enum that wraps values in an Ok(value) and Err(e) variant. Math operations, attributes, and methods are passed to value in Ok(value). If an operation with the Ok(value) variant results in an error, then it is converted to an Err(e) variant. Err(e) contains one or more error messages and math operations, attributes, and methods result in appending the respective errors."
81-
__copyright__ = "Copyright (c) 2024 Scott E. Boyce"
81+
__copyright__ = "Copyright (c) 2025 Scott E. Boyce"
8282

8383
__all__ = ["Result", "Ok", "Err", "ResultErr"]
8484

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ packages = ["ResultContainer"]
6464
include-package-data = true
6565

6666
[tool.setuptools.dynamic]
67-
version = { attr = "ResultContainer._metadata.__version__" }
67+
version = { attr = "ResultContainer._init.__version__" }
6868

6969
[tool.black]
7070
target-version = ['py39']

0 commit comments

Comments
 (0)