Skip to content

Commit

Permalink
Merge pull request #37 from meejah/fix-ci
Browse files Browse the repository at this point in the history
drop python 2, upgrade py3 versions
  • Loading branch information
meejah authored Mar 29, 2023
2 parents 4b35885 + 8c3de8e commit 39672ae
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ User-visible changes in "magic-wormhole-mailbox-server":
## Upcoming

* correctly close a mailbox which still has a nameplate (#28)
* remote python2 support
* test on python 3.8, 3.9, 3.10 and 3.11 series
* drop "six" (#35)


## Release 0.4.1 (11-Sep-2019)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
],
package_data={"wormhole_mailbox_server": ["db-schemas/*.sql"]},
install_requires=[
"six",
"attrs >= 16.3.0", # 16.3.0 adds __attrs_post_init__
"twisted[tls] >= 17.5.0",
"autobahn[twisted] >= 0.14.1",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = {py27,py35,py36,py37,pypy}
envlist = {py37,py38,py39,py310,py311,pypy}
skip_missing_interpreters = True
minversion = 2.4.0

Expand Down

0 comments on commit 39672ae

Please sign in to comment.