From 590ac2e31539c396416467da848ef62b64b1c11c Mon Sep 17 00:00:00 2001 From: Grey Li Date: Tue, 17 Oct 2023 21:41:47 +0800 Subject: [PATCH] Release 2.1.0 --- .github/workflows/build.yml | 2 +- CHANGES | 6 +++--- src/flask_assets.py | 2 +- tox.ini | 7 ++----- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 947f642..635fc9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: name: tests strategy: matrix: - os: [ubuntu-latest, macos-latest] # TODO: add windows-latest + os: [ubuntu-latest, macos-latest] # TODO: enable windows-latest python: ['3.8', '3.9', '3.10', '3.11', '3.12'] fail-fast: false runs-on: ${{ matrix.os }} diff --git a/CHANGES b/CHANGES index 9326e1a..4ac1e01 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,8 @@ -2.1.0 - - Drop Python 2.x and Python 3.6 support. +2.1.0 (2023-10-17) + - Drop Python 2.x support. - Migrate from nose to pytest. - Migrate from Travis to GitHub Actions. - - Test against Python 3.7 - 3.12. + - Test against Python 3.8 - 3.12. - Fix compatibility with Flask 2.0 and 3.0. 2.0 (2019-12-20) diff --git a/src/flask_assets.py b/src/flask_assets.py index 4bfec70..8db9ff1 100644 --- a/src/flask_assets.py +++ b/src/flask_assets.py @@ -20,7 +20,7 @@ from webassets.filter import Filter, register_filter from webassets.loaders import PythonLoader, YAMLLoader -__version__ = (2, 0) +__version__ = (2, 1, 0) # webassets core compatibility used in setup.py __webassets_version__ = ('>=2.0', ) diff --git a/tox.ini b/tox.ini index 102dee1..01fd422 100644 --- a/tox.ini +++ b/tox.ini @@ -4,14 +4,11 @@ skip_missing_interpreters = true [gh-actions] python = - 3.7: py37 - 3.8: py38 + 3.8: py38, flask1 3.9: py39 - 3.10: py310 + 3.10: py310, flask2 3.11: py311 3.12: py312 - flask1: py38 - flask2: py310 [testenv] deps =