File tree Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,10 @@ jobs:
1717 uses : actions/setup-python@v4
1818 with :
1919 python-version : " 3.x"
20- - name : Install pypa/build
21- run : >-
22- python3 -m
23- pip install
24- build
25- --user
26- - name : Build a binary wheel and a source tarball
27- run : python3 -m build
2820 - name : Install dependencies
2921 run : make setup
22+ - name : Build a binary wheel and a source tarball
23+ run : make build
3024 - name : Test the package before release
3125 run : make test
3226 release :
Original file line number Diff line number Diff line change 11node_modules
22.DS_Store
3- __pycache__
3+ __pycache__
4+ dist
Original file line number Diff line number Diff line change 11setup : requirements.txt
22 pip install -r requirements.txt
33
4+ build :
5+ python3 -m build
6+
47test :
58 python -m unittest discover ./tests/asyncapi_python_parser_jonaslagoni
69
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " asyncapi_python_parser_jonaslagoni"
7- version = " 0.0.2 "
7+ version = " 0.0.3 "
88authors = [
99 { name =" jonaslagoni" , email =" jonas-lt@live.dk" },
1010]
@@ -23,15 +23,17 @@ Homepage = "https://github.com/jonaslagoni/asyncapi-python-parser"
2323Issues = " https://github.com/jonaslagoni/asyncapi-python-parser/issues"
2424
2525[tool .semantic_release ]
26- assets = []
26+ assets = [
27+ " dist/*.tar.gz"
28+ ]
2729commit_message = " chore(release): v{version}\n\n Automatically generated by python-semantic-release"
2830commit_parser = " angular"
2931logging_use_named_masks = false
3032major_on_zero = true
3133allow_zero_version = true
3234tag_format = " v{version}"
33- version_variable = [
34- " pyproject.toml:version" ,
35+ version_toml = [
36+ " pyproject.toml:project. version" ,
3537]
3638
3739[tool .semantic_release .branches .main ]
Original file line number Diff line number Diff line change 22jsonschema
33jsonpath-ng
44python-semantic-release
5+ build
You can’t perform that action at this time.
0 commit comments