Skip to content

Commit a9a7183

Browse files
authored
Update maturin to 0.11.4 (#42)
1 parent 9b8cda6 commit a9a7183

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ pythonpublish-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: maturin build
3131
run: |
3232
pip install --upgrade pip
33-
pip install --no-cache-dir cffi maturin==0.8.2
33+
pip install --no-cache-dir cffi maturin==0.11.4
3434
maturin build -b cffi --release
3535
- name: Publish with Maturin
3636
run: maturin publish -b cffi --no-sdist -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }}

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy>=1
22
cffi>=1
33
pycparser>=2
4-
maturin==0.8.2
4+
maturin==0.11.4
55
mkdocs==1.1.2
66
mkdocs-material==6.2.4
77
mkdocs-material-extensions==1.0.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["maturin"]
2+
requires = ["maturin>=0.11,<0.12"]
33
build-backend = "maturin"
44

55
[tool.maturin]

sycret/sycret/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import os
44
from .ffi import ffi
55

6-
lib = ffi.dlopen(os.path.join(os.path.dirname(__file__), 'native.so'), 4098)
6+
lib = ffi.dlopen(os.path.join(os.path.dirname(__file__), 'native.so'))
77
del os

0 commit comments

Comments
 (0)