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

Bump python from 3.9.7-slim-buster to 3.10.0-slim-buster in /{{ cookiecutter.project_name }}/app #41

Merged
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 .github/workflows/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v2.3.5
- uses: actions/setup-python@v2.2.2
with:
python-version: 3.9.1
python-version: 3.10.0
- name: Install Dependencies
run: make install
- name: Test
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.10.0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Django/PostgreSQL/Redis/Celery in Docker cookiecutter"
authors = ["Michal Nakoneczny"]

[tool.poetry.dependencies]
python = "3.9.1"
python = "3.10.0"
pytest = "^6.2.5"
cookiecutter = "^1.7.3"
pytest-timeout = "^2.0.1"
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.7-slim-buster
FROM python:3.10.0-slim-buster

RUN apt-get update && apt-get install -y curl ca-certificates netcat-openbsd procps postgresql-client-11

Expand Down