Skip to content
Closed
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 bases/rsptx/interactives/runestone/poll/poll.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__author__ = "isaiahmayerchak"

from asyncore import write
# from asyncore import write
from docutils import nodes
from docutils.parsers.rst import directives
from runestone.common.runestonedirective import (
Expand Down
2 changes: 1 addition & 1 deletion bases/rsptx/interactives/runestone/showeval/showeval.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
__author__ = "tconzett"

from asyncore import write
# from asyncore import write
from docutils import nodes
from docutils.parsers.rst import directives
from runestone.common.xmlcommon import substitute_departure
Expand Down
96 changes: 60 additions & 36 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion projects/admin_server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion projects/admin_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ itsdangerous = "^2.2.0"
jinja2 = "^3.1.5"
jwcrypto = "^1.5.6"
psycopg2-binary = "^2.9.10"
pydal = "^20230521.1"
pydal = ">=20230521.1"
pydantic-settings = "^2.0.3"
pyhumps = "^3.8.0"
python-dateutil = "^2.8.2"
Expand Down
6 changes: 3 additions & 3 deletions projects/assignment_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# pull official base image
FROM python:3.11-slim AS builder
FROM python:3.13-slim AS builder

LABEL org.opencontainers.image.source https://github.com/RunestoneInteractive/rs

# This is the name of the wheel that we build using `poetry build-project`
ARG wheel=assignment_server-0.1.0-py3-none-any.whl
ARG wheel=assignment_server-0.1.1-py3-none-any.whl

# set work directory
WORKDIR /usr/src/app
Expand Down Expand Up @@ -34,7 +34,7 @@ COPY ./dist/$wheel /usr/src/app/$wheel
RUN pip install --no-cache-dir --upgrade /usr/src/app/$wheel
RUN rm /usr/src/app/$wheel

FROM python:3.11-slim
FROM python:3.13-slim
WORKDIR /usr/src/app

# Post install clean up and reduce the size of the image
Expand Down
Loading