Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit 56d6b32

Browse files
Bump coverage from 6.1.1 to 6.2 (#1222)
* Bump coverage from 6.1.1 to 6.2 Bumps [coverage](https://github.com/nedbat/coveragepy) from 6.1.1 to 6.2. - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](coveragepy/coveragepy@6.1.1...6.2) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Add manual deploy of PyPi Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Chen Wang <[email protected]>
1 parent 5747a59 commit 56d6b32

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Upload Python Package
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: '3.x'
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip
20+
pip install setuptools wheel twine
21+
- name: Build and publish
22+
env:
23+
TWINE_USERNAME: __token__
24+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
25+
run: |
26+
python setup.py sdist bdist_wheel
27+
twine upload dist/*

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
async-timeout==4.0.2
2-
coverage==6.1.1
2+
coverage==6.2
33
flake8==4.0.1
44
hiredis==2.0.0
55
mock==4.0.3

0 commit comments

Comments
 (0)