Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependency on xlutils and instead embed a small extract of the library code #78

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions InitGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ def missingDependency(file):
except:
missingDependency("xlwt-1.3.0.tar.gz")

try:
import xlutils
except:
missingDependency("xlutils-2.0.0.tar.gz")

import importerUtils
try:
import SheetMetalCmd
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ As Fusion360 files contains a complete ACIS model representation these files can

This Addon also requires additional python packages:
* https://pypi.python.org/pypi/xlrd - for reading embedded Excel workbooks
* http://pypi.python.org/pypi/xlutils - for preparing imported Excel workbooks to
be stored
* https://pypi.python.org/pypi/xlwt - for writing embedded Excel workbooks
* http://www.decalage.info/python/olefileio - olefile for reading Microsoft OLE(2)
files.
Expand Down
2 changes: 1 addition & 1 deletion importerReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from importerSheetSM import SheetSmReader
from importerResults import ResultReader
from importerUtils import *
from xlutils.copy import copy
from localXlutilsCopy import copy

__author__ = 'Jens M. Plonka'
__copyright__ = 'Copyright 2018, Germany'
Expand Down
Binary file removed libs/xlutils-2.0.0.tar.gz
Binary file not shown.
Loading