Skip to content

Commit aad2dc9

Browse files
authored
remove version limit of Cython (#143)
1 parent af0d5fd commit aad2dc9

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

libmc/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
__file__ as _libmc_so_file
3434
)
3535

36-
__VERSION__ = "1.4.12"
37-
__version__ = "1.4.12"
36+
__VERSION__ = "1.4.13"
37+
__version__ = "1.4.13"
3838
__author__ = "mckelvin"
3939
__email__ = "mckelvin@users.noreply.github.com"
4040
__date__ = "Fri Jun 7 06:16:00 2024 +0800"

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,7 @@ def find_version(*file_paths):
101101
],
102102
setup_requires=[
103103
# Support for the basestring type is new in Cython 0.20.
104-
'Cython >= 0.20 ; implementation_name != "pypy"',
105-
'Cython >= 0.20 ; implementation_name == "pypy" and python_version > "3.8"',
106-
107-
# compile error in PyPy 3.8 with Cython 3.1.2
108-
# error: 'PyDescr_NewMember' was not declared in this scope
109-
'Cython >= 0.20, < 3.1; implementation_name == "pypy" and python_version <= "3.8"',
104+
'Cython >= 0.20',
110105
],
111106
ext_modules=[
112107
Extension(

src/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package golibmc
22

3-
const _Version = "1.4.12"
3+
const _Version = "1.4.13"
44
const _Author = "mckelvin"
55
const _Email = "mckelvin@users.noreply.github.com"
66
const _Date = "Fri Jun 7 06:16:00 2024 +0800"

0 commit comments

Comments
 (0)