We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90783ec commit 5bb4fe8Copy full SHA for 5bb4fe8
.github/workflows/publish.yml
@@ -24,7 +24,7 @@ jobs:
24
25
- name: Install dependencies
26
run: |
27
- python -m pip install --upgrade pip setuptools wheel build twine
+ python -m pip install --upgrade pip setuptools<66 wheel<0.38 build twine
28
29
- name: Clean old builds
30
run: rm -rf dist build *.egg-info
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="testcato",
5
- version="1.0.9",
+ version="1.1.0",
6
packages=find_packages(),
7
description="A package for categorizing test results.",
8
author="Anurag",
testcato/__init__.py
@@ -1,3 +1,3 @@
1
# Package metadata for wheel
__title__ = "testcato"
-__version__ = "1.0.9"
+__version__ = "1.1.0"
0 commit comments