Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PointlessUser committed May 31, 2023
1 parent a9b6eb5 commit f8191a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mecsimcalc v0.1.1 documentation
# Mecsimcalc v0.1.2 documentation

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.

Expand Down
2 changes: 1 addition & 1 deletion mecsimcalc/image_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from PIL import Image

from general_utils import input_to_file, metadata_to_filetype
from mecsimcalc import input_to_file, metadata_to_filetype

# Define a dictionary for file type conversions
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"}
Expand Down
2 changes: 1 addition & 1 deletion mecsimcalc/spreadsheet_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pandas as pd
from typing import Union, Tuple

from general_utils import input_to_file, metadata_to_filetype
from mecsimcalc import input_to_file, metadata_to_filetype


def file_to_dataframe(file: io.BytesIO) -> pd.DataFrame:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = "0.1.1"
VERSION = "0.1.2"
DESCRIPTION = "Useful functions for MecSimCalc.com"

# Setting up
Expand Down

0 comments on commit f8191a0

Please sign in to comment.