Skip to content

Commit 00753b7

Browse files
Merge pull request #15 from TheEric960/hotfix-0.5.1
improved actions, setup, and readme
2 parents 1e94c90 + fd4c598 commit 00753b7

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/python-publish-test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# This workflows will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

4-
name: Upload Python Package
4+
name: Upload Test Python Package
55

66
on:
77
pull_request:
8-
types: [assigned, opened, reopened]
8+
types: [opened, reopened]
9+
branches:
10+
- master
911

1012
jobs:
1113
deploy:

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# pyvba
22
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyvba)
3-
![PyPI](https://img.shields.io/pypi/v/pyvba)
4-
![GitHub](https://img.shields.io/github/license/TheEric960/pyvba)
5-
3+
[![PyPI](https://img.shields.io/pypi/v/pyvba)](https://pypi.org/project/pyvba/)
4+
[![GitHub](https://img.shields.io/github/license/TheEric960/pyvba)](https://github.com/TheEric960/pyvba)
65

76
The pyvba package was designed to gather data from VBA-based applications (e.g. Microsoft Excel, CATIA, etc.). It
87
may also be used to assist programming VBA macro scripts in a more sensical language.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pyvba",
8-
version="0.5.0",
8+
version="0.5.1",
99
author="TheEric960",
1010
description="Data mine and write scrips for VBA applications on Windows.",
1111
long_description=long_description,
@@ -20,5 +20,6 @@
2020
"Operating System :: Microsoft :: Windows",
2121
"Programming Language :: Python :: 3",
2222
],
23+
install_requires=['pywin32'],
2324
python_requires='>=3',
2425
)

0 commit comments

Comments
 (0)