Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
- PYPIにPython3.11対応のWindowsビルド済みモジュールを追加
  • Loading branch information
TadaoYamaoka committed May 7, 2023
1 parent a63439b commit 51104ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10, 3.11 ]
steps:
- name: Check out repository code
uses: actions/checkout@v3
Expand All @@ -19,7 +19,7 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine Cython
- name: Build and publish 3_6-3_9
if: ${{ matrix.python-version != '3.10' }}
if: ${{ matrix.python-version < 3.10 }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
Expand All @@ -28,7 +28,7 @@ jobs:
python setup.py bdist_wheel
twine upload dist/*
- name: Build and publish 3_10
if: ${{ matrix.python-version == '3.10' }}
if: ${{ matrix.python-version >= 3.10 }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def finalize_options(self):

setup(
name='cshogi',
version='0.5.1',
version='0.5.2',
packages=['cshogi', 'cshogi.usi', 'cshogi.gym_shogi', 'cshogi.gym_shogi.envs', 'cshogi.dlshogi', 'cshogi.web', 'cshogi.web.templates', 'cshogi.web.static'],
package_data={'cshogi.web.templates': ['*'], 'cshogi.web.static': ['*']},
ext_modules=ext_modules,
Expand Down

0 comments on commit 51104ac

Please sign in to comment.