Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
gisfanmachel committed Aug 28, 2024
1 parent cec3ff0 commit 58fdb79
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion com.vgis.python.office/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
setup(

name="vgis_office", # Required 项目名称
version="1.1.6", # Required 发布版本号
version="1.1.7", # Required 发布版本号
description="A libary for office operator", # Optional 项目简单描述
long_description=long_description, # Optional 详细描述
long_description_content_type="text/markdown", # 内容类型
Expand Down
3 changes: 2 additions & 1 deletion com.vgis.python.office/vgis_office/vgis_excel/excelTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
import sys
if sys.platform == 'win32':
import comtypes.client
import pythoncom
import subprocess
from pathlib import Path
import pythoncom


class ExcelHelper:

Expand Down
3 changes: 2 additions & 1 deletion com.vgis.python.office/vgis_office/vgis_ppt/pptTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
# import win32com.client
if sys.platform == 'win32':
import comtypes.client
import pythoncom
import subprocess
from pathlib import Path
import pythoncom



class PptHelper:
Expand Down
3 changes: 2 additions & 1 deletion com.vgis.python.office/vgis_office/vgis_word/wordTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
# import win32com.client
if sys.platform == 'win32':
import comtypes.client
import pythoncom
import subprocess
from pathlib import Path
import pythoncom



class WordHelper:
Expand Down

0 comments on commit 58fdb79

Please sign in to comment.