Skip to content

Commit

Permalink
update CI & (non-android) deps
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Dec 14, 2023
1 parent 2e11b44 commit ad20e79
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@ name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
# - '3.12.0-alpha - 3.12'
- '3.12'
# - '3.13.0-alpha - 3.13'
- pypy3.8
- pypy3.9
- pypy3.10
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -34,7 +38,7 @@ jobs:
echo "::set-output name=DBVERSION::$DBVERSION"
id: get-db-version
- name: Cache DB
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: jiten/res/*.sqlite3
key: ${{ steps.get-db-version.outputs.DBVERSION }}
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==2.2.2
click==8.1.3
gunicorn==20.1.0
Flask==3.0.0
click==8.1.7
gunicorn==21.2.0
kanjidraw==0.2.3
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.11.0
python-3.12.1

0 comments on commit ad20e79

Please sign in to comment.