Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools",
"cython>=0.29.1,<0.30.0",
"cython>=0.29.1",
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
catalogue>=2.0.3,<2.1.0
# Development requirements
cython>=0.29.1,<0.30.0
cython>=0.29.1
pytest>=4.6.5
pytest-timeout>=1.3.3,<2.0.0
mock>=2.0.0,<3.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ zip_safe = true
include_package_data = true
python_requires = >=3.6
setup_requires =
cython>=0.29.1,<0.30.0
cython>=0.29.1
install_requires =
catalogue>=2.0.3,<2.1.0

Expand Down
2 changes: 1 addition & 1 deletion srsly/msgpack/_unpacker.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cdef extern from "Python.h":
from libc.stdlib cimport *
from libc.string cimport *
from libc.limits cimport *
ctypedef unsigned long long uint64_t
from libc.stdint cimport uint64_t

from .exceptions import (
BufferFull,
Expand Down