owlplanner 2025.2.10__py3-none-any.whl → 2025.2.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- owlplanner/plan.py +6 -6
- owlplanner/version.py +1 -1
- {owlplanner-2025.2.10.dist-info → owlplanner-2025.2.11.dist-info}/METADATA +1 -1
- {owlplanner-2025.2.10.dist-info → owlplanner-2025.2.11.dist-info}/RECORD +6 -6
- {owlplanner-2025.2.10.dist-info → owlplanner-2025.2.11.dist-info}/WHEEL +0 -0
- {owlplanner-2025.2.10.dist-info → owlplanner-2025.2.11.dist-info}/licenses/LICENSE +0 -0
owlplanner/plan.py
CHANGED
|
@@ -463,7 +463,8 @@ class Plan(object):
|
|
|
463
463
|
assert 0 <= phi[j] <= 1, "Fractions must be between 0 and 1."
|
|
464
464
|
|
|
465
465
|
self.phi_j = np.array(phi, dtype=np.float32)
|
|
466
|
-
self.mylog.vprint(
|
|
466
|
+
self.mylog.vprint("Spousal beneficiary fractions set to",
|
|
467
|
+
["{:.2f}".format(self.phi_j[j]) for j in range(self.N_j)])
|
|
467
468
|
self.caseStatus = "modified"
|
|
468
469
|
|
|
469
470
|
if np.any(self.phi_j != 1):
|
|
@@ -493,7 +494,8 @@ class Plan(object):
|
|
|
493
494
|
fac = u.getUnits(units)
|
|
494
495
|
amounts = u.rescale(amounts, fac)
|
|
495
496
|
|
|
496
|
-
self.mylog.vprint("Setting pension of", [u.d(amounts[i]) for i in range(self.N_i)],
|
|
497
|
+
self.mylog.vprint("Setting pension of", [u.d(amounts[i]) for i in range(self.N_i)],
|
|
498
|
+
"at age(s)", [int(ages[i]) for i in range(self.N_i)])
|
|
497
499
|
|
|
498
500
|
thisyear = date.today().year
|
|
499
501
|
# Use zero array freshly initialized.
|
|
@@ -525,10 +527,8 @@ class Plan(object):
|
|
|
525
527
|
amounts = u.rescale(amounts, fac)
|
|
526
528
|
|
|
527
529
|
self.mylog.vprint(
|
|
528
|
-
"Setting social security benefits of",
|
|
529
|
-
[
|
|
530
|
-
"at age(s)",
|
|
531
|
-
ages,
|
|
530
|
+
"Setting social security benefits of", [u.d(amounts[i]) for i in range(self.N_i)],
|
|
531
|
+
"at age(s)", [int(ages[i]) for i in range(self.N_i)],
|
|
532
532
|
)
|
|
533
533
|
|
|
534
534
|
thisyear = date.today().year
|
owlplanner/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2025.02.
|
|
1
|
+
__version__ = "2025.02.11"
|
|
@@ -2,16 +2,16 @@ owlplanner/__init__.py,sha256=QqrdT0Qks20osBTg7h0vJHAxpP9lL7DA99xb0nYbtw4,254
|
|
|
2
2
|
owlplanner/abcapi.py,sha256=LbzW_KcNy0IeHp42MUHwGu_H67B2h_e1_vu-c2ACTkQ,6646
|
|
3
3
|
owlplanner/config.py,sha256=XFVcXFVpEuWXzybaijNGSTt72py3cYJ3oq0S1ujivl0,11702
|
|
4
4
|
owlplanner/logging.py,sha256=tYMw04O-XYSzjTj36fmKJGLcE1VkK6k6oJNeqtKXzuc,2530
|
|
5
|
-
owlplanner/plan.py,sha256=
|
|
5
|
+
owlplanner/plan.py,sha256=f_F7sIka4c_91dV7X5XHJkVvztXbtS_cqi24ncBI9gY,113084
|
|
6
6
|
owlplanner/progress.py,sha256=8jlCvvtgDI89zXVNMBg1-lnEyhpPvKQS2X5oAIpoOVQ,384
|
|
7
7
|
owlplanner/rates.py,sha256=TN407qU4n-bac1oymkQ_n2QKEPwFQxy6JZVGwgIkLQU,15585
|
|
8
8
|
owlplanner/tax2025.py,sha256=PVteko6G9gjAT247GnTzAPUe_RaLnZUArFtdzf1dF3M,7014
|
|
9
9
|
owlplanner/timelists.py,sha256=tYieZU67FT6TCcQQis36JaXGI7dT6NqD7RvdEjgJL4M,4026
|
|
10
10
|
owlplanner/utils.py,sha256=HM70W60qB41zfnbl2LltNwAuLYHyy5XYbwnbNcaa6FE,2351
|
|
11
|
-
owlplanner/version.py,sha256=
|
|
11
|
+
owlplanner/version.py,sha256=n8NJ4iSncRuwW7_28_WeKgNkjAmkCzQOs0fAbkRFU5E,28
|
|
12
12
|
owlplanner/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
owlplanner/data/rates.csv,sha256=6fxg56BVVORrj9wJlUGFdGXKvOX5r7CSca8uhUbbuIU,3734
|
|
14
|
-
owlplanner-2025.2.
|
|
15
|
-
owlplanner-2025.2.
|
|
16
|
-
owlplanner-2025.2.
|
|
17
|
-
owlplanner-2025.2.
|
|
14
|
+
owlplanner-2025.2.11.dist-info/METADATA,sha256=VkjJTA1BGuWJ1HnFS4tGWYrPvA1s_iV0YyIrnxYN2yk,63947
|
|
15
|
+
owlplanner-2025.2.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
owlplanner-2025.2.11.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
17
|
+
owlplanner-2025.2.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|