File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ workflow_dispatch : # Manual trigger for release
5+
6+ jobs :
7+ release :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ with :
12+ fetch-depth : 0
13+ token : ${{ secrets.RELEASE_GITHUB_TOKEN }}
14+ - name : Python Semantic Release
15+ uses : relekang/python-semantic-release@master
16+ with :
17+ github_token : ${{ secrets.RELEASE_GITHUB_TOKEN }}
18+ pypi_token : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change @@ -23,9 +23,16 @@ def get_version():
2323 author = "Benedict Becker" ,
2424 author_email = "benedict.becker93@gmail.com" ,
2525 license = "LGPLv3" ,
26- url = "https://github.com/becelot/python-hde " ,
26+ url = "https://github.com/becelot/python-hostingde " ,
2727 packages = find_packages (exclude = ["docs*" , "tests*" ]),
28- install_requires = ["requests>=2.25.0" , "requests-toolbelt>=0.9.1" ],
28+ install_requires = [
29+ "requests>=2.25.1" ,
30+ "marshmallow==3.10.0" ,
31+ "marshmallow-dataclass==8.3.1" ,
32+ "marshmallow-enum==1.5.1" ,
33+ "urllib3~=1.26.3" ,
34+ "responses~=0.13.1"
35+ ],
2936 python_requires = ">=3.6.0" ,
3037 classifiers = [
3138 "Development Status :: 5 - Production/Stable" ,
You can’t perform that action at this time.
0 commit comments