Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update python docker tag #152

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.1
3.13.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python 3.10.1
python 3.13.1
poetry 1.8.5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

Pythonのバージョンが3.10.1から3.13.1に更新されました。これにより、新しい機能やバグ修正、パフォーマンス改善が利用可能になります。ただし、この変更が既存のコードと互換性があるかどうかは、具体的なアプリケーションのコードに依存します。この変更はPythonのランタイム環境に影響を与え、アプリケーションの動作に影響を与える可能性があります。

- python 3.10.1
+ python 3.13.1

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.13-slim

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

Pythonのバージョンが3.10から3.13に更新されました。これにより、新しい機能やバグ修正、パフォーマンス改善が反映されます。また、セキュリティ修正も含まれている可能性があります。しかし、この変更が既存のコードと互換性があるかどうかは、具体的なアプリケーションのコードに依存します。

- FROM python:3.10-slim
+ FROM python:3.13-slim

RUN apt-get update && apt-get install -y \
build-essential \
Expand Down
71 changes: 9 additions & 62 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
Repository = "https://github.com/kyaukyuai/gpt-all-star"

[tool.poetry.dependencies]
python = ">=3.10.0,<3.11"
python = ">=3.13.1,<3.14"
python-dotenv = "^1.0.0"
jinja2 = "^3.1.2"
langchain = ">=0.3,<0.4"
Expand Down
Loading