Skip to content

Commit

Permalink
Merge pull request #36 from meejah/python-312
Browse files Browse the repository at this point in the history
Python 3.12
  • Loading branch information
meejah authored Oct 25, 2023
2 parents 13ee053 + 7ec03b0 commit 3b29855
Show file tree
Hide file tree
Showing 5 changed files with 1,048 additions and 428 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]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

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 @@ -3,6 +3,9 @@ User-visible changes in "magic-wormhole-transit-relay":
## unreleased

* drop Python 2, Python 3.5 and 3.6 support
* add Python 3.9, 3.10, 3.11 and 3.12 to CI
* update versioneer to 0.29


## Release 0.2.1 (11-Sep-2019)

Expand Down
5 changes: 2 additions & 3 deletions src/wormhole_transit_relay/__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']
Loading

0 comments on commit 3b29855

Please sign in to comment.