Conversation
Bumps python from 3.15.0a6-slim to 3.15.0a7-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.15.0a7-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pytz](https://github.com/stub42/pytz) from 2025.2 to 2026.1.post1. - [Release notes](https://github.com/stub42/pytz/releases) - [Commits](stub42/pytz@release_2025.2...release_2026.1.post1) --- updated-dependencies: - dependency-name: pytz dependency-version: 2026.1.post1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 2.0.47 to 2.0.48. - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) --- updated-dependencies: - dependency-name: sqlalchemy dependency-version: 2.0.48 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pygithub](https://github.com/pygithub/pygithub) from 2.8.1 to 2.9.0. - [Release notes](https://github.com/pygithub/pygithub/releases) - [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst) - [Commits](PyGithub/PyGithub@v2.8.1...v2.9.0) --- updated-dependencies: - dependency-name: pygithub dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bump pygithub from 2.8.1 to 2.9.0
….0.48 Bump sqlalchemy from 2.0.47 to 2.0.48
…post1 Bump pytz from 2025.2 to 2026.1.post1
…15.0a7-slim Bump python from 3.15.0a6-slim to 3.15.0a7-slim
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s pinned dependencies and refreshes the Python base image used for container builds.
Changes:
- Bump PyPI dependencies in
requirements.txt(PyGithub, SQLAlchemy, pytz). - Update Docker base image tag from
python:3.15.0a6-slimtopython:3.15.0a7-slimin both Dockerfiles.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| requirements.txt | Updates pinned library versions used by the app at runtime. |
| Dockerfile | Updates the Python base image used for the standard container build. |
| Dockerfile.root | Updates the Python base image used for the root-enabled container build. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Dockerfile
Outdated
| @@ -1,4 +1,4 @@ | |||
| FROM python:3.15.0a6-slim | |||
| FROM python:3.15.0a7-slim | |||
There was a problem hiding this comment.
The base image is pinned to an alpha Python tag (3.15.0a7). Pre-release tags can change or disappear and are more likely to break builds/reproducibility over time; consider using a stable Python release tag and/or pinning the image by digest if you need this exact build.
| FROM python:3.15.0a7-slim | |
| FROM python:3.12-slim |
| @@ -1,4 +1,4 @@ | |||
| FROM python:3.15.0a6-slim | |||
| FROM python:3.15.0a7-slim | |||
There was a problem hiding this comment.
The base image is pinned to an alpha Python tag (3.15.0a7). Pre-release tags can change or disappear and are more likely to break builds/reproducibility over time; consider using a stable Python release tag and/or pinning the image by digest if you need this exact build.
| FROM python:3.15.0a7-slim | |
| FROM python:3.12-slim |
No description provided.