Skip to content

Commit

Permalink
Merge pull request #42 from meejah/python-312
Browse files Browse the repository at this point in the history
Python 3.12
  • Loading branch information
meejah committed Oct 25, 2023
2 parents 39672ae + 406dea9 commit 44debc8
Show file tree
Hide file tree
Showing 5 changed files with 1,048 additions and 430 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: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ User-visible changes in "magic-wormhole-mailbox-server":

* 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
* test on python 3.8, 3.9, 3.10, 3.11 and 3.12 series
* drop "six" (#35)
* upgrade "versioneer"


## Release 0.4.1 (11-Sep-2019)
Expand Down
5 changes: 2 additions & 3 deletions src/wormhole_mailbox_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']

0 comments on commit 44debc8

Please sign in to comment.