Skip to content

Commit f8191a0

Browse files
committed
fixed bug
1 parent a9b6eb5 commit f8191a0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mecsimcalc v0.1.1 documentation
1+
# Mecsimcalc v0.1.2 documentation
22

33
This library is designed to provide a set of functions for handling and converting various types of data, such as base64 encoded data, Pandas DataFrames, and Pillow images.
44

mecsimcalc/image_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from PIL import Image
66

7-
from general_utils import input_to_file, metadata_to_filetype
7+
from mecsimcalc import input_to_file, metadata_to_filetype
88

99
# Define a dictionary for file type conversions
1010
file_type_mappings = {"jpg": "jpeg", "tif": "tiff", "ico": "x-icon", "svg": "svg+xml", "jpeg": "jpeg", "tiff": "tiff", "x-icon": "x-icon", "svg+xml": "svg+xml"}

mecsimcalc/spreadsheet_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pandas as pd
44
from typing import Union, Tuple
55

6-
from general_utils import input_to_file, metadata_to_filetype
6+
from mecsimcalc import input_to_file, metadata_to_filetype
77

88

99
def file_to_dataframe(file: io.BytesIO) -> pd.DataFrame:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
88
long_description = "\n" + fh.read()
99

10-
VERSION = "0.1.1"
10+
VERSION = "0.1.2"
1111
DESCRIPTION = "Useful functions for MecSimCalc.com"
1212

1313
# Setting up

0 commit comments

Comments
 (0)