Skip to content
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 docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ services:
expose:
- 5434
hostname: pgadmin4
image: dpage/pgadmin4:9.17
image: dpage/pgadmin4:9.17@sha256:2f4ce946ddf8360680d7eff4eaba1d91859eb6b4003e6623bad5c63a322c2f4d
labels:
"docker_compose_diagram.cluster": "Internal Network"
"docker_compose_diagram.description": "PostgreSQL administration"
Expand Down
2 changes: 1 addition & 1 deletion services/docker-cron/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14-slim-bookworm
FROM python:3.14-slim-bookworm@sha256:23c59390fc717bf09f9336908199a0ae75d9c4264bf296123f94ad772fea3b52

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down
6 changes: 3 additions & 3 deletions services/docker-cron/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pandas>=2.3.3,<3
psycopg2-binary~=2.9.12
requests~=2.34.2
pandas==2.3.3
psycopg2-binary==2.9.12
requests==2.34.2
2 changes: 1 addition & 1 deletion services/fswatch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14-slim-bookworm
FROM python:3.14-slim-bookworm@sha256:23c59390fc717bf09f9336908199a0ae75d9c4264bf296123f94ad772fea3b52

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion services/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.29-bookworm
FROM nginx:1.29-bookworm@sha256:8adbdcb969e2676478ee2c7ad333956f0c8e0e4c5a7463f4611d7a2e7a7ff5dc

ARG NGINX_PASS
ARG NGINX_USER
Expand Down
2 changes: 1 addition & 1 deletion tagbase_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14-slim-bookworm
FROM python:3.14-slim-bookworm@sha256:23c59390fc717bf09f9336908199a0ae75d9c4264bf296123f94ad772fea3b52

RUN mkdir -p /usr/src/app
RUN mkdir -p /usr/src/app/logs
Expand Down
4 changes: 2 additions & 2 deletions tagbase_server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[build-system]
requires = ["setuptools>=61", "wheel"]
requires = ["setuptools==84.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "tagbase_server"
version = "v0.14.0"
description = "tagbase-server API"
readme = "README.md"
requires-python = ">=3.10,<3.15"
requires-python = "==3.14.7"
authors = [{ name = "Tagbase Dev Team", email = "tagtuna@gmail.com" }]
keywords = ["OpenAPI", "tagbase-server API"]
classifiers = [
Expand Down
10 changes: 5 additions & 5 deletions tagbase_server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ opentelemetry-instrumentation-flask==0.60b1
opentelemetry-instrumentation-logging==0.60b1
opentelemetry-instrumentation-psycopg2==0.60b1
pandas==2.3.3
parmap>=1.7.0
patool>=1.12
parmap==1.7.0
patool==4.0.5
psycopg2-binary==2.9.12
python_dateutil>=2.6.0
pyunpack>=0.3
python_dateutil==2.9.0.post0
pyunpack==0.3
tqdm==4.70.0
tzlocal>=4.1
tzlocal==5.4.4
6 changes: 3 additions & 3 deletions tagbase_server/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest~=9.1.1
pytest-cov>=2.8.1
pytest==9.1.1
pytest-cov==7.1.0
pytest-randomly==4.1.0
httpx>=0.27.0
httpx==0.28.1
diff-cover==10.5.0
Loading