Skip to content

Commit 474b011

Browse files
committed
small adjustments
1 parent 5422f6f commit 474b011

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
run: |
3333
if [ -d tests ]; then python -m unittest ./tests/**.py; fi
3434
35+
- name: Clean-up before build distribution 📦
36+
run: |
37+
rm -rf build
38+
rm -rf dist
39+
rm -rf flask_httpx_request_converted_to_flask_test_client_request.egg-info
40+
3541
- name: Build distribution 📦
3642
run: |
3743
python setup.py sdist bdist_wheel

flask_httpx_request_converted_to_flask_test_client_request/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"
22

33
import json
44
from typing import Any, Dict, TYPE_CHECKING

0 commit comments

Comments
 (0)