Skip to content

Commit f58d11c

Browse files
authored
Merge pull request #18 from anurag03/ansinha/python-fix4
Versoin
2 parents 7240c8b + ca7750f commit f58d11c

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
- name: Clean old builds
3232
run: rm -rf dist build *.egg-info
3333

34-
- name: Build package
35-
run: python -m build
34+
- name: Build package (legacy)
35+
run: |
36+
python setup.py sdist bdist_wheel
3637
3738
- name: Show Python and packaging tool versions
3839
run: |

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
metadata_version = 2.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="testcato",
5-
version="1.1.6",
5+
version="1.1.7",
66
packages=find_packages(),
77
description="A package for categorizing test results.",
88
author="Anurag",

testcato/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Package metadata for wheel
22
__title__ = "testcato"
3-
__version__ = "1.1.6"
3+
__version__ = "1.1.7"

0 commit comments

Comments
 (0)