Skip to content

Commit

Permalink
remove wheel package for any because it exceeds the max size of pypi,…
Browse files Browse the repository at this point in the history
… polish code bump version to 0.9.14b2
  • Loading branch information
yangyaofei committed Nov 29, 2021
1 parent 49345c9 commit 01d3fbe
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py clean --all bdist_wheel --plat-name any
# python setup.py clean --all bdist_wheel --plat-name any
python setup.py clean --all bdist_wheel --plat-name manylinux2014_x86_64
python setup.py clean --all bdist_wheel --plat-name manylinux2014_aarch64
python setup.py clean --all bdist_wheel --plat-name win_amd64
Expand Down
2 changes: 1 addition & 1 deletion nlpir/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import functools
from .exception import NLPIRException

__version__ = "0.9.14b1"
__version__ = "0.9.14b2"
PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
logger = logging.getLogger("nlpir")

Expand Down
3 changes: 0 additions & 3 deletions nlpir/native/eye_checker.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# coding=utf-8
import os
import typing
from ctypes import c_bool, c_char_p, c_int, c_size_t

from nlpir.native import nlpir_base
from nlpir.native.nlpir_base import NLPIRBase, UTF8_CODE, PACKAGE_DIR

RPT_UNSPECIFIC = 0 # No Specific type
RPT_JIAYOUZHAN = 1 # 加油站报告
Expand Down

0 comments on commit 01d3fbe

Please sign in to comment.