Skip to content

Commit 23c786f

Browse files
authored
Support Python 3.11 (#286)
1 parent 96b8521 commit 23c786f

File tree

7 files changed

+29
-26
lines changed

7 files changed

+29
-26
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-python@v2
1212
with:
13-
python-version: "3.10"
13+
python-version: "3.11"
1414
- uses: abatilo/[email protected]
1515
with:
1616
poetry-version: 1.2.2

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2"]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717
steps:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-python@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,4 @@ venv.bak/
108108

109109
prv
110110
pub
111+
out

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,9 @@ b'helloworld'
251251
252252
## Release Notes
253253

254-
### 0.3.1 ~ 0.3.12
254+
### 0.3.1 ~ 0.3.13
255255

256-
- Support Python 3.8, 3.9, 3.10
256+
- Support Python 3.8, 3.9, 3.10, 3.11
257257
- Drop Python 3.5, 3.6
258258
- Bump dependencies
259259
- Update documentation

poetry.lock

Lines changed: 22 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "eciespy"
33
packages = [
44
{include = "ecies"},
55
]
6-
version = "0.3.12"
6+
version = "0.3.13"
77
# docs
88
authors = ["Weiliang Li <[email protected]>"]
99
description = "Elliptic Curve Integrated Encryption Scheme for secp256k1 in Python"

scripts/ci.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ echo '0x95d3c5e483e9b1d4f5fc8e79b2deaf51362980de62dbb082a9a4257eef653d7d' > prv
1414
echo '0x98afe4f150642cd05cc9d2fa36458ce0a58567daeaf5fde7333ba9b403011140a4e28911fcf83ab1f457a30b4959efc4b9306f514a4c3711a16a80e3b47eb58b' > pub
1515
echo 'helloworld' | poetry run eciespy -e -k pub -O out
1616
poetry run eciespy -d -k prv -D out
17+
rm prv pub out

0 commit comments

Comments
 (0)