File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Upload Python Package
5
5
6
6
on :
7
7
release :
8
- types : [published, edited ]
8
+ types : [published]
9
9
10
10
jobs :
11
11
deploy :
28
28
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
29
29
run : |
30
30
python setup.py sdist bdist_wheel
31
- twine upload dist/*
31
+ twine upload --repository testpypi dist/*
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ def _generate(self):
91
91
)
92
92
else :
93
93
self ._all [attr ] = obj
94
+ except KeyboardInterrupt :
95
+ raise
94
96
except BaseException as e :
95
97
self ._errors [attr ] = e .args
96
98
self ._all [attr ] = e
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ def __getattr__(self, item):
31
31
"""Return a variable, FunctionViewer, or Browser object."""
32
32
try :
33
33
obj = getattr (self ._com , item )
34
+ except KeyboardInterrupt :
35
+ raise
34
36
except BaseException as e :
35
37
self ._errors [item ] = e .args
36
38
return e
Original file line number Diff line number Diff line change 6
6
setuptools .setup (
7
7
name = "pyvba" ,
8
8
version = "0.5.1" ,
9
- author = "TheEric960 " ,
9
+ author = "Jack Wilson " ,
10
10
description = "Data mine and write scrips for VBA applications on Windows." ,
11
11
long_description = long_description ,
12
12
long_description_content_type = "text/markdown" ,
18
18
"License :: OSI Approved :: MIT License" ,
19
19
"Natural Language :: English" ,
20
20
"Operating System :: Microsoft :: Windows" ,
21
- "Programming Language :: Python :: 3" ,
21
+ "Programming Language :: Python :: 3.7 " ,
22
22
],
23
23
install_requires = ['pywin32' ],
24
- python_requires = '>=3' ,
24
+ python_requires = '>=3.7 ' ,
25
25
)
You can’t perform that action at this time.
0 commit comments