Skip to content

Commit 353a85c

Browse files
committed
python 3.14
1 parent f4ce522 commit 353a85c

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1313

1414
steps:
1515
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ Description
3333

3434
Saku requires
3535
-------------
36-
* Python (ver.3.9 or later)
36+
* Python (ver.3.10 or later)
3737
* pipenv if you install packages with pipenv
3838
* Jinja2 (ver.3.1 or later)
3939
* PIL or Pillow (Python Imaging Libraty) if you need
4040
* Supervisor if you need
4141

4242
Usage Saku
4343
----------
44-
1. Install Python3.9 or lator.
44+
1. Install Python3.10 or lator.
4545
2. Open port 8000/tcp.
4646
* IPv4 or IPv6 are needed to open.
4747
* Docker needs IPv4 or settings for IPv6.

doc/README.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Sakuは Shingetsu Another Keen Utility の略です。
2424

2525
朔に必要なプログラム
2626
--------------------
27-
* Python (ver.3.9以降)
27+
* Python (ver.3.10以降)
2828
* pipenv パッケージをpipenvでインストールする場合
2929
* Jinja2 (ver.3 以降)
3030
* PIL または Pillow (Python Imaging Library) もし必要なら
3131
* Supervisor もし必要なら
3232

3333
朔の使い方
3434
----------
35-
1. Python3.9以降をインストールする
35+
1. Python3.10以降をインストールする
3636
2. モデム、ルータまたはファイアウォールを設定して8000/tcpをポート開放する。
3737
* 環境次第なのでここでは説明しきれません
3838
* IPv6対応環境では最初からポート開放されている場合があるようです

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13-slim
1+
FROM python:3.14-slim
22

33
RUN groupadd -g 1000 saku && \
44
useradd -m -d /saku -s /bin/bash -u 1000 -g 1000 saku
@@ -15,7 +15,8 @@ RUN python -m pip install pipenv && \
1515
USER root:root
1616
COPY docker/entrypoint.sh /
1717
RUN chmod 755 /entrypoint.sh && \
18-
chown -R root:root /saku
18+
chown -R root:root /saku && \
19+
chmod 755 /saku
1920
COPY file file
2021
COPY shingetsu shingetsu
2122
COPY template template

0 commit comments

Comments
 (0)