Loading .gitignore +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ build/ __pycache__/ *.egg-info/ .idea .DS_Store src/.DS_Store # ignore backup files Loading Dockerfile +1 −1 Original line number Diff line number Diff line FROM --platform=linux/amd64 python:3.9-slim FROM --platform=linux/amd64 python:3.11-slim RUN apt-get -yqq update && apt-get -yqq upgrade && \ apt-get -yqq install vim && apt-get -yqq install postgresql-client Loading RELEASE_NOTES.md +3 −0 Original line number Diff line number Diff line # VERSION 0.2.0 - Bump versions of python packages for compatibility with higher python versions # VERSION 0.1.20 - Bumped pymssql version to 2.2.8 (Intended to patch build failures on M1 chipset) Loading docker-compose.test.yaml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ services: - ./test_envfile #command: ["sh", "-c", "pytest --cov=common /test/test.py"] #command: ["sh", "-c", "test-db-conn && pytest -v --cov=common /test/test.py"] command: ["python3", "/test/test.py"] command: ["sh", "-c", "test-db-conn && python3 /test/test.py"] #command: tail -f /dev/null depends_on: - postgres Loading sql/create_tables.sql 100644 → 100755 +0 −0 File mode changed from 100644 to 100755. View file Loading
.gitignore +1 −1 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ build/ __pycache__/ *.egg-info/ .idea .DS_Store src/.DS_Store # ignore backup files Loading
Dockerfile +1 −1 Original line number Diff line number Diff line FROM --platform=linux/amd64 python:3.9-slim FROM --platform=linux/amd64 python:3.11-slim RUN apt-get -yqq update && apt-get -yqq upgrade && \ apt-get -yqq install vim && apt-get -yqq install postgresql-client Loading
RELEASE_NOTES.md +3 −0 Original line number Diff line number Diff line # VERSION 0.2.0 - Bump versions of python packages for compatibility with higher python versions # VERSION 0.1.20 - Bumped pymssql version to 2.2.8 (Intended to patch build failures on M1 chipset) Loading
docker-compose.test.yaml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ services: - ./test_envfile #command: ["sh", "-c", "pytest --cov=common /test/test.py"] #command: ["sh", "-c", "test-db-conn && pytest -v --cov=common /test/test.py"] command: ["python3", "/test/test.py"] command: ["sh", "-c", "test-db-conn && python3 /test/test.py"] #command: tail -f /dev/null depends_on: - postgres Loading