Skip to content

Commit

Permalink
Merge branch 'BYVoid:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikiSuen authored Mar 19, 2022
2 parents 2d3e0a2 + 4f14822 commit 77f9914
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Document 文檔: https://byvoid.github.io/OpenCC/
### Others (Unofficial)

* Swift (iOS): [SwiftyOpenCC](https://github.com/XQS6LB3A/SwiftyOpenCC)
* iOSOpenCC (pod): [iOSOpenCC](https://github.com/swiftdo/OpenCC)
* Java: [opencc4j](https://github.com/houbb/opencc4j)
* Android: [android-opencc](https://github.com/qichuan/android-opencc)
* PHP: [opencc4php](https://github.com/nauxliu/opencc4php)
Expand Down
2 changes: 1 addition & 1 deletion data/dictionary/TWPhrasesIT.txt
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ U盤 隨身碟
發送 傳送
皮膚 面板
盤片 碟片
盤符 碟符
盤符 磁碟機代號
目標代碼 目的碼
相冊 相簿
矢量 向量
Expand Down
1 change: 1 addition & 0 deletions data/dictionary/TWPhrasesOther.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@
鐦 鉲
鑥 鎦
黃宏 黃宏
借記卡 簽帳金融卡
2 changes: 1 addition & 1 deletion deps/pybind11-2.5.0/tools/pybind11Tools.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if(NOT PYBIND11_PYTHON_VERSION)
set(PYBIND11_PYTHON_VERSION "" CACHE STRING "Python version to use for compiling modules")
endif()

set(Python_ADDITIONAL_VERSIONS 3.9 3.8 3.7 3.6 3.5 3.4)
set(Python_ADDITIONAL_VERSIONS 3.10 3.9 3.8 3.7 3.6 3.5 3.4)
find_package(PythonLibsNew ${PYBIND11_PYTHON_VERSION} REQUIRED)

include(CheckCXXCompilerFlag)
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ bash ${MINICONDA_FILENAME} -b -f -p $HOME/miniconda3
export PATH=$HOME/miniconda3/bin:$PATH
eval "$(conda shell.bash hook)"

for VERSION in 3.5 3.6 3.7 3.8 3.9; do
for VERSION in 3.5 3.6 3.7 3.8 3.9 3.10; do
# Create and activate environment
conda create -y -n py$VERSION python=$VERSION
conda activate py$VERSION
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bash ${MINICONDA_FILENAME} -b -f -p $HOME/miniconda3
export PATH=$HOME/miniconda3/bin:$PATH
eval "$(conda shell.bash hook)"

for VERSION in 3.5 3.6 3.7 3.8 3.9; do
for VERSION in 3.5 3.6 3.7 3.8 3.9 3.10; do
# Create and activate environment
conda create -y -n py$VERSION python=$VERSION
conda activate py$VERSION
Expand Down
2 changes: 1 addition & 1 deletion release-pypi-windows.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
setlocal EnableDelayedExpansion

SET VERSIONS=3.5 3.6 3.7 3.8 3.9
SET VERSIONS=3.5 3.6 3.7 3.8 3.9 3.10
SET SOURCEDIR=%cd%

REM Build packages
Expand Down

0 comments on commit 77f9914

Please sign in to comment.