Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "pypy-3.7"
- "3.9"
- "pypy-3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
**unreleased**
**v1.0.2-dev**
- Housekeeping: migrated from travis+appveyor to GitHub Actions for CI, thanks @clbarnes
- Drop Python3.6 support, thanks @clbarnes
- Add Python3.9, thanks @clbarnes

**v1.0.1**
- Added: enable special characters in search/replace, thanks @mckelvin
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35, py36, py37, py38, pypy3
envlist = py37, py38, py39, pypy3

[testenv]
passenv = HOME
Expand All @@ -16,8 +16,7 @@ python_files = test*.py

[gh-actions]
python =
2.7: py27
3.6: py36
3.7: py37
3.8: py38, mypy
pypy-3.7: pypy3
3.9: py38
pypy-3.8: pypy3