File tree Expand file tree Collapse file tree 4 files changed +46
-2
lines changed Expand file tree Collapse file tree 4 files changed +46
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Python 🐍 distributions 📦 to PyPI
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ permissions :
8
+ contents : read
9
+
10
+ jobs :
11
+ build-n-publish :
12
+ name : Build and publish Python 🐍 distributions 📦 to PyPI
13
+
14
+ runs-on : ubuntu-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+
19
+ - name : Set up Python
20
+ uses : actions/setup-python@v4
21
+ with :
22
+ python-version : " 3.x"
23
+
24
+ - name : Install pypa/build
25
+ run : >-
26
+ python -m
27
+ pip install
28
+ build
29
+ --user
30
+
31
+ - name : Build a binary wheel and a source tarball
32
+ run : >-
33
+ python -m
34
+ build
35
+ --sdist
36
+ --wheel
37
+ --outdir dist/
38
+ .
39
+
40
+ - name : Publish distribution 📦 to PyPI
41
+ uses : pypa/gh-action-pypi-publish@release/v1
42
+ with :
43
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
build :
13
+ name : Build and test Python 🐍 package
13
14
14
15
runs-on : ubuntu-latest
15
16
strategy :
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = speechkit
3
- version = 2.2.1
3
+ version = 2.2.2
4
4
author = Tikhon Petrishchev
5
5
author_email = tikhon.petrishchev@gmail.com
6
6
description = Python SDK for Yandex Speechkit API.
Original file line number Diff line number Diff line change 4
4
"""
5
5
6
6
__author__ = 'Tikhon Petrishchev'
7
- __version__ = '2.2.1 '
7
+ __version__ = '2.2.2 '
8
8
9
9
from speechkit ._auth import Session
10
10
from speechkit ._recognition .streaming_recognition import DataStreamingRecognition
You can’t perform that action at this time.
0 commit comments