Skip to content

Commit

Permalink
Merge pull request #56 from adamus1red/sopel-8.0.0
Browse files Browse the repository at this point in the history
Bump sopel version to v8.0.0
  • Loading branch information
HumorBaby authored Jun 4, 2024
2 parents 1c71274 + 0c8c7b7 commit 13be7e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
build_and_push:
name: Build, tag, and push images
env:
default_python: "3.9"
default_python: "3.12"

strategy:
fail-fast: true
matrix:
python_images: [3.6,3.7,3.8,3.9]
python_images: ["3.8","3.9","3.10","3.11","3.12"]
# The type of runner that the job will run on
runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Set the python image tag to use as the base image.
# See https://hub.docker.com/_/python?tab=tags for a list of valid tags.
# Set default below to desired Python version.
ARG PYTHON_TAG=3.9-alpine
ARG PYTHON_TAG=3.12-alpine
##

## Set the UID/GID that sopel will run and make files/folders as.
Expand All @@ -23,7 +23,7 @@ ARG SOPEL_REPO=https://github.com/sopel-irc/sopel.git
## Set the specific branch/commit for the source
# This can be a branch name, release/tag, or even specific commit hash.
# Set Docker build-arg SOPEL_BRANCH, or replace the default value below.
ARG SOPEL_BRANCH=v7.1.9
ARG SOPEL_BRANCH=v8.0.0
##

## Do not modify below this !! ##
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

### First run

* Pull the docker image for the latest Sopel release ([v7.1.9](https://github.com/sopel-irc/sopel/releases/tag/v7.1.9))
* Pull the docker image for the latest Sopel release ([v8.0.0](https://github.com/sopel-irc/sopel/releases/tag/v8.0.0))

```console
$ docker pull sopelirc/sopel:latest
Expand Down
4 changes: 2 additions & 2 deletions hooks/build
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ set -ex
# the image label. Figured, might as well put the Python version in here
# since these two variables should be updated (or at least checked) together
# with new Sopel versions.
PYTHON_TAG=${PYTHON_TAG:-3.9-alpine}
SOPEL_BRANCH=${SOPEL_BRANCH:-v7.1.9}
PYTHON_TAG=${PYTHON_TAG:-3.12-alpine}
SOPEL_BRANCH=${SOPEL_BRANCH:-v8.0.0}

# Prevent cache busting during development builds by allowing build-specific
# ARGs to be set by environment variables.
Expand Down

0 comments on commit 13be7e7

Please sign in to comment.