owlplanner 2025.1.27__py3-none-any.whl → 2025.1.28__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/rates.py +5 -5
- owlplanner/version.py +1 -1
- {owlplanner-2025.1.27.dist-info → owlplanner-2025.1.28.dist-info}/METADATA +1 -1
- {owlplanner-2025.1.27.dist-info → owlplanner-2025.1.28.dist-info}/RECORD +6 -6
- {owlplanner-2025.1.27.dist-info → owlplanner-2025.1.28.dist-info}/WHEEL +0 -0
- {owlplanner-2025.1.27.dist-info → owlplanner-2025.1.28.dist-info}/licenses/LICENSE +0 -0
owlplanner/rates.py
CHANGED
|
@@ -31,8 +31,8 @@ Disclaimer: This program comes with no guarantee. Use at your own risk.
|
|
|
31
31
|
###################################################################
|
|
32
32
|
import numpy as np
|
|
33
33
|
import pandas as pd
|
|
34
|
-
import
|
|
35
|
-
import
|
|
34
|
+
import os
|
|
35
|
+
import sys
|
|
36
36
|
from datetime import date
|
|
37
37
|
|
|
38
38
|
from owlplanner import logging
|
|
@@ -43,10 +43,10 @@ from owlplanner import utils as u
|
|
|
43
43
|
FROM = 1928
|
|
44
44
|
TO = 2024
|
|
45
45
|
|
|
46
|
+
where = os.path.dirname(sys.modules['owlplanner'].__file__)
|
|
47
|
+
file = os.path.join(where, 'data/rates.csv')
|
|
46
48
|
try:
|
|
47
|
-
|
|
48
|
-
csvFile = io.BytesIO(csvBytes)
|
|
49
|
-
df = pd.read_csv(csvFile)
|
|
49
|
+
df = pd.read_csv(file)
|
|
50
50
|
except Exception as e:
|
|
51
51
|
raise RuntimeError(f'Could not find rates data file: {e}')
|
|
52
52
|
|
owlplanner/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2025.1.
|
|
1
|
+
__version__ = "2025.1.28"
|
|
@@ -4,14 +4,14 @@ owlplanner/config.py,sha256=ouADb6YES5Zgv0UwnEK9Axwvs8drp-ahboQjI4WTrr0,12069
|
|
|
4
4
|
owlplanner/logging.py,sha256=pXg_mMgBll-kklqaDRLDNVUFo-5DAa-yqTKtiVrhNWw,2530
|
|
5
5
|
owlplanner/plan.py,sha256=eRX04KT8DVkWD6sFzqm18OZZazSONQviuIYe7WNW7BM,115405
|
|
6
6
|
owlplanner/progress.py,sha256=YZjL5_m4MMgKPlWlhhKacPLt54tVhVGF1eXxxZapMYs,386
|
|
7
|
-
owlplanner/rates.py,sha256=
|
|
7
|
+
owlplanner/rates.py,sha256=aKOmau8i3uqxZGi7HQJpzooT3X-yAZhga5MZJ56pBzk,15627
|
|
8
8
|
owlplanner/tax2025.py,sha256=W3yXKC3rgcqPjZMguOyejgsox9J42w3ogBNN1mIBHBI,6965
|
|
9
9
|
owlplanner/timelists.py,sha256=ifxbyMlRW3IMwsiu8zsoodA1CKJQthgk3iPq50vQIds,4104
|
|
10
10
|
owlplanner/utils.py,sha256=adIwqGVQFfvekke0JCxYJD3PKHbptVCj3NrQT2TQIB4,2351
|
|
11
|
-
owlplanner/version.py,sha256=
|
|
11
|
+
owlplanner/version.py,sha256=IsA0LMM6U46XS2G3Hhe2lWjxXVKcighNZH7REVFvu3M,27
|
|
12
12
|
owlplanner/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
owlplanner/data/rates.csv,sha256=6fxg56BVVORrj9wJlUGFdGXKvOX5r7CSca8uhUbbuIU,3734
|
|
14
|
-
owlplanner-2025.1.
|
|
15
|
-
owlplanner-2025.1.
|
|
16
|
-
owlplanner-2025.1.
|
|
17
|
-
owlplanner-2025.1.
|
|
14
|
+
owlplanner-2025.1.28.dist-info/METADATA,sha256=ZLZXTjtEXy-eQaYHJbhKP9RfJcYf06jg95TIrr4Gpmk,64515
|
|
15
|
+
owlplanner-2025.1.28.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
owlplanner-2025.1.28.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
17
|
+
owlplanner-2025.1.28.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|