Skip to content

Commit

Permalink
Merge pull request #53 from meejah/fix-ci
Browse files Browse the repository at this point in the history
Fix CI (can't use 3.7, 3.8 on GitHub Actions)
  • Loading branch information
meejah authored Dec 10, 2024
2 parents 0c21d20 + ad47b31 commit b1c2133
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 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", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

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

* (put release-note here when merging / proposing a PR)
* CI no longer tests Python 3.8 (it is EOL)


## Release 0.5.1 (9-Nov-2024)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ wormhole --relay-url=ws://example.com:4000/v1 send FILENAME

Dockerfile content:
```dockerfile
FROM python:3.8
FROM python:3.11
RUN pip install magic-wormhole-mailbox-server
CMD [ "twist", "wormhole-mailbox","--usage-db=usage.sqlite" ]
CMD [ "twist", "wormhole-mailbox","--usage-db=usage.sqlite" ]
```
> Note: This will be running as root, you should adjust it to be in user space for production.
Expand All @@ -99,4 +99,4 @@ wormhole --relay-url=ws://localhost:4000/v1 send FILENAME

This library is released under the MIT license, see LICENSE for details.

This library is compatible with python3 (3.7 and higher).
This library is compatible with python3 (3.9 and higher).

0 comments on commit b1c2133

Please sign in to comment.