Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Oct 22, 2023
1 parent abbb58d commit 590ac2e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/flask_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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', )

Expand Down
7 changes: 2 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 590ac2e

Please sign in to comment.