Skip to content

Commit 12e1cc5

Browse files
authored
Merge pull request #13 from anurag03/ansinha/python-version
Versoin
2 parents 84045af + 2eb9666 commit 12e1cc5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.13'
20+
python-version: '3.x'
2121

2222
- name: List all files recursively
2323
run: ls -lR
@@ -30,7 +30,7 @@ jobs:
3030
run: rm -rf dist build *.egg-info
3131

3232
- name: Build package
33-
run: python -m build
33+
run: python -m build --no-isolation
3434

3535
- name: Show Python and packaging tool versions
3636
run: |

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.1",
5+
version="1.1.2",
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.1"
3+
__version__ = "1.1.2"

0 commit comments

Comments
 (0)