Skip to content
Merged
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
4 changes: 2 additions & 2 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
__file__ as _libmc_so_file
)

__VERSION__ = "1.4.12"
__version__ = "1.4.12"
__VERSION__ = "1.4.13"
__version__ = "1.4.13"
__author__ = "mckelvin"
__email__ = "mckelvin@users.noreply.github.com"
__date__ = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,7 @@ def find_version(*file_paths):
],
setup_requires=[
# Support for the basestring type is new in Cython 0.20.
'Cython >= 0.20 ; implementation_name != "pypy"',
'Cython >= 0.20 ; implementation_name == "pypy" and python_version > "3.8"',

# compile error in PyPy 3.8 with Cython 3.1.2
# error: 'PyDescr_NewMember' was not declared in this scope
'Cython >= 0.20, < 3.1; implementation_name == "pypy" and python_version <= "3.8"',
'Cython >= 0.20',
],
ext_modules=[
Extension(
Expand Down
2 changes: 1 addition & 1 deletion src/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package golibmc

const _Version = "1.4.12"
const _Version = "1.4.13"
const _Author = "mckelvin"
const _Email = "mckelvin@users.noreply.github.com"
const _Date = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down