Skip to content

Commit

Permalink
Merge pull request #9 from Dibakarroy1997/enable-ci-ww31.7
Browse files Browse the repository at this point in the history
support python 3.7
  • Loading branch information
debakarr authored Jul 31, 2022
2 parents 755724b + 9e78335 commit 056e6d7
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
poetry-version: ["1.1.14"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
64 changes: 58 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
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"
Expand Down

0 comments on commit 056e6d7

Please sign in to comment.