Skip to content

Commit

Permalink
feat: update to sumac
Browse files Browse the repository at this point in the history
  • Loading branch information
ghassanmas committed Oct 25, 2024
1 parent 5458bfa commit ef8ed45
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog.d/20241024_193059_ghassan.maslamani_sumac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 💥[Feature] Upgrade to Sumac (by @ghassanmas)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def load_about():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=18.0.0,<19.0.0"],
extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"},
install_requires=["tutor>=19.0.0,<20.0.0"],
extras_require={"dev": "tutor[dev]>=19.0.0,<20.0.0"},
entry_points={
"tutor.plugin.v1": [
"forum = tutorforum.plugin"
Expand Down
2 changes: 1 addition & 1 deletion tutorforum/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "18.1.1"
__version__ = "19.0.0"
4 changes: 2 additions & 2 deletions tutorforum/templates/forum/build/forum/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
########## Base image
# https://hub.docker.com/_/ruby/tags
FROM docker.io/ruby:3.3.1-slim-bullseye as base
FROM docker.io/ruby:3.3.5-slim-bookworm AS base

ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && \
Expand All @@ -14,7 +14,7 @@ RUN useradd --home-dir /app --create-home --shell /bin/bash --uid 1000 app
USER app

# Install rake and bundler
ENV PATH=/app/.gem/ruby/3.3.1/bin:$PATH
ENV PATH=/app/.gem/ruby/3.3.5/bin:$PATH
RUN gem install --user-install bundler --version 2.3.26
RUN gem install --user-install rake --version 13.1.0

Expand Down

0 comments on commit ef8ed45

Please sign in to comment.