-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Dibakarroy1997/enable-ci-ww31.7
support python 3.7
- Loading branch information
Showing
4 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,16 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build and publish to pypi | ||
uses: JRubics/[email protected] | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.7" | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
poetry-version: "1.1.14" | ||
- name: Bump version | ||
run: poetry version ${{github.ref_name}} | ||
- name: Set credential | ||
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} | ||
- name: Build and publish to pypi | ||
run: poetry publish --build |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[tool.poetry] | ||
name = "kisskh-downloader" | ||
version = "0.1.2" | ||
version = "0.1.0" | ||
description = "Simple downloaded for https://kisskh.me/" | ||
readme = "README.md" | ||
authors = ["Debakar Roy <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
python = "^3.7" | ||
click = "^8.1.3" | ||
requests = "^2.28.1" | ||
pydantic = "^1.9.1" | ||
|