Skip to content

Commit

Permalink
Merge pull request #163 from greyli/release-210
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Oct 22, 2023
2 parents abbb58d + 129b665 commit c5a66ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
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-22)
- 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 c5a66ec

Please sign in to comment.