Skip to content

Commit

Permalink
Merge pull request #132 from skirpichev/test-ft-wheels
Browse files Browse the repository at this point in the history
Fix free-threading wheels
  • Loading branch information
skirpichev authored Jan 11, 2025
2 parents 776d345 + 72836e1 commit ae5dfbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ typedef struct _mpzobject {

PyTypeObject MPZ_Type;

#if !defined(PYPY_VERSION)
#if !defined(PYPY_VERSION) && !Py_GIL_DISABLED
# define CACHE_SIZE (99)
#else
# define CACHE_SIZE (0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ version = {attr = "setuptools_scm.get_version"}
"*" = ["*.h"]

[project.optional-dependencies]
tests = ["pytest", "hypothesis<=6.123.2"]
tests = ["pytest", "hypothesis<=6.123.4"]
docs = ["sphinx"]
develop = ["python-gmp[tests,docs]", "pre-commit", "pyperf",
"gmpy2>=2.2; platform_python_implementation!='PyPy'",
Expand Down

0 comments on commit ae5dfbc

Please sign in to comment.