Skip to content

Commit

Permalink
Add Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas committed Sep 1, 2024
1 parent 985a033 commit 6fc6d18
Show file tree
Hide file tree
Showing 5 changed files with 230 additions and 179 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.1"]
steps:
- uses: actions/checkout@v4

Expand All @@ -28,13 +28,15 @@ jobs:
- run: brew install automake
if: matrix.os == 'macos-latest'

- run: poetry install
- run: poetry install --with test

- name: Run test
run: poetry run pytest -s --cov=ecies tests --cov-report xml

- run: ./scripts/ci.sh

- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

- run: poetry build
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Release Notes

## 0.4.1 ~ 0.4.2
## 0.4.1 ~ 0.4.3

- Bump dependencies
- Support Python 3.12
- Support Python 3.12, 3.13

## 0.4.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Other language versions:
- [Golang](https://github.com/ecies/go)
- [WASM](https://github.com/ecies/rs-wasm)

You can also check a FastAPI web backend demo [here](https://github.com/kigawas/eciespy-demo).
You can also check a FastAPI web backend demo [here](https://github.com/ecies/py-demo).

## Install

Expand Down
Loading

0 comments on commit 6fc6d18

Please sign in to comment.