File tree Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 2222 run : |
2323 python -m pip install --upgrade pip
2424 pip install setuptools wheel twine
25- - name : Build and publish
26- env :
27- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
28- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
29- run : |
3025 python setup.py sdist bdist_wheel
31- twine upload dist/*
26+ - name : Publish a Python distribution to PyPI
27+ uses : pypa/gh-action-pypi-publish@release/v1
28+ with :
29+ user : __token__
30+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -108,10 +108,10 @@ Make sure the same tests pass on Travis CI and AppVeyor.
108108 #current_version = 2.3.6-dev0
109109
110110 bumpversion minor
111- #current_version = 2.3.1 -dev0
111+ #current_version = 2.3.2 -dev0
112112
113113 bumpversion build
114- #current_version = 2.3.1 -dev1
114+ #current_version = 2.3.2 -dev1
115115
116116 bumpversion major
117117 #current_version = 3.0.0-dev0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ PyThaiNLP เป็นไลบารีภาษาไพทอนสำหร
2323
2424| Version | Description | Status |
2525| :------:| :--:| :------:|
26- | [ 2.3.1 ] ( https://github.com/PyThaiNLP/pythainlp/releases ) | Stable | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/445 ) |
26+ | [ 2.3.2 ] ( https://github.com/PyThaiNLP/pythainlp/releases ) | Stable | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/445 ) |
2727| [ ` dev ` ] ( https://github.com/PyThaiNLP/pythainlp/tree/dev ) | Release Candidate for 2.4 | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/545 ) |
2828
2929
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ PyThaiNLP เป็นไลบารีภาษาไพทอนสำหร
2222
2323| รุ่น | คำอธิบาย | สถานะ |
2424| :------:| :--:| :------:|
25- | [ 2.3.1 ] ( https://github.com/PyThaiNLP/pythainlp/releases ) | Stable | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/445 ) |
25+ | [ 2.3.2 ] ( https://github.com/PyThaiNLP/pythainlp/releases ) | Stable | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/445 ) |
2626| [ ` dev ` ] ( https://github.com/PyThaiNLP/pythainlp/tree/dev ) | Release Candidate for 2.4 | [ Change Log] ( https://github.com/PyThaiNLP/pythainlp/issues/545 ) |
2727
2828ติดตามพวกเราบน [ PyThaiNLP Facebook page] ( https://www.facebook.com/pythainlp/ ) เพื่อรับข่าวสารเพิ่มเติม
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2- __version__ = "2.3.1 "
2+ __version__ = "2.3.2 "
33
44thai_consonants = "กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรลวศษสหฬอฮ" # 44 chars
55
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2.3.1
2+ current_version = 2.3.2
33commit = True
44tag = True
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Original file line number Diff line number Diff line change 7979
8080setup (
8181 name = "pythainlp" ,
82- version = "2.3.1 " ,
82+ version = "2.3.2 " ,
8383 description = "Thai Natural Language Processing library" ,
8484 long_description = readme ,
8585 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments