Skip to content

Commit 7ad8eea

Browse files
committed
chore: fix ci for py3.13 tests
1 parent 2914c94 commit 7ad8eea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
os: [ubuntu-20.04, windows-latest]
13+
os: [ubuntu-latest, windows-latest]
1414
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1515

1616
steps:

flask_minify/parsers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
try:
1010
import minify as minify_go
11-
except ImportError:
11+
except Exception:
1212
minify_go = None
1313

1414
from flask_minify.exceptions import FlaskMinifyException

0 commit comments

Comments
 (0)