Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: esolitos/spori.fi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: esolitos/spori.fi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 155 additions and 137 deletions.
  1. +0 −12 .github/dependabot.yml
  2. +7 −2 .github/workflows/container-buid.yml
  3. +1 −1 .github/workflows/pylint.yml
  4. +1 −1 Dockerfile
  5. +1 −1 Pipfile
  6. +111 −106 Pipfile.lock
  7. +10 −0 README.md
  8. +6 −0 renovate.json
  9. +12 −12 requirements.txt
  10. +6 −2 swa_http.py
12 changes: 0 additions & 12 deletions .github/dependabot.yml

This file was deleted.

9 changes: 7 additions & 2 deletions .github/workflows/container-buid.yml
Original file line number Diff line number Diff line change
@@ -13,8 +13,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Login to Github Packages
@@ -25,10 +27,13 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
tags: |
ghcr.io/esolitos/spori.fi/app:latest
# build on feature branches, push only on main branch
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64,linux/arm64,linux/arm/v8
cache-from: type=gha, scope=${{ github.workflow }}
cache-to: type=gha, mode=max, scope=${{ github.workflow }}
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.13-slim

WORKDIR /app

2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ autopep8 = "*"
pre-commit = "*"

[packages]
spotipy = "~=2.23"
spotipy = "~=2.24"
bottle = "~=0.12"
jinja2 = "~=3.1"
redis = "~=5.0"
Loading