Skip to content

Commit

Permalink
Merge pull request #42 from homeylab/chore_bump
Browse files Browse the repository at this point in the history
bump python version to 3.12.4, update pkg depedencies to latest
  • Loading branch information
pchang388 authored Jul 6, 2024
2 parents f46dc61 + bee6f95 commit 2c385f2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
"version": "3.12.1"
"version": "3.12.4"
}
},
"customizations": {
"vscode": {
"extensions": [
"streetsidesoftware.code-spell-checker",
"ms-python.python",
"redhat.vscode-yaml"
"redhat.vscode-yaml",
"GitHub.copilot"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12.1'
python-version: '3.12.4'
- name: Install Dependencies
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12.1'
python-version: '3.12.4'
- name: Install dependencies
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BASE_IMAGE=python
ARG BASE_IMAGE_TAG=3.12.1-slim-bookworm
ARG BASE_IMAGE_TAG=3.12.4-slim-bookworm

FROM ${BASE_IMAGE}:${BASE_IMAGE_TAG}

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## DOCKER BUILD VARS
BASE_IMAGE=python
BASE_IMAGE_TAG=3.12-slim-bookworm
BASE_IMAGE_TAG=3.12.4-slim-bookworm
IMAGE_NAME=homeylab/bookstack-file-exporter
# keep this start sequence unique (IMAGE_TAG=)
# github actions will use this to create a tag
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ classifiers =
python_requires = >=3.8
install_requires =
Pyyaml >= 6.0.1 # https://pypi.org/project/PyYAML/
Pydantic >= 2.5.3 # https://docs.pydantic.dev/latest/
requests >= 2.31.0 # https://pypi.org/project/requests/
minio >= 7.2.3 # https://pypi.org/project/minio/
Pydantic >= 2.8.2 # https://docs.pydantic.dev/latest/
requests >= 2.32.3 # https://pypi.org/project/requests/
minio >= 7.2.7 # https://pypi.org/project/minio/
packages = find:

[options.entry_points]
Expand Down

0 comments on commit 2c385f2

Please sign in to comment.