Skip to content

Commit 01d3fbe

Browse files
committed
remove wheel package for any because it exceeds the max size of pypi, polish code bump version to 0.9.14b2
1 parent 49345c9 commit 01d3fbe

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
3030
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3131
run: |
32-
python setup.py clean --all bdist_wheel --plat-name any
32+
# python setup.py clean --all bdist_wheel --plat-name any
3333
python setup.py clean --all bdist_wheel --plat-name manylinux2014_x86_64
3434
python setup.py clean --all bdist_wheel --plat-name manylinux2014_aarch64
3535
python setup.py clean --all bdist_wheel --plat-name win_amd64

nlpir/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import functools
88
from .exception import NLPIRException
99

10-
__version__ = "0.9.14b1"
10+
__version__ = "0.9.14b2"
1111
PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
1212
logger = logging.getLogger("nlpir")
1313

nlpir/native/eye_checker.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# coding=utf-8
2-
import os
3-
import typing
42
from ctypes import c_bool, c_char_p, c_int, c_size_t
53

64
from nlpir.native import nlpir_base
7-
from nlpir.native.nlpir_base import NLPIRBase, UTF8_CODE, PACKAGE_DIR
85

96
RPT_UNSPECIFIC = 0 # No Specific type
107
RPT_JIAYOUZHAN = 1 # 加油站报告

0 commit comments

Comments
 (0)