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 17, 2023
1 parent 9fd814c commit 218ca0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
name: tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
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 }}
steps:
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 @@ -15,7 +15,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
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[tox]
envlist = py37, py38, py39, py310, py311, py312
envlist = py38, py39, py310, py311, py312
skip_missing_interpreters = true

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand Down

0 comments on commit 218ca0d

Please sign in to comment.