python-gmp 0.4.0a2__tar.gz → 0.4.0a4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/coverage.yml +1 -1
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/wheels.yml +1 -1
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/PKG-INFO +5 -5
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/docs/index.rst +1 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/main.c +1602 -1151
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/pyproject.toml +3 -4
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/python_gmp.egg-info/PKG-INFO +5 -5
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/python_gmp.egg-info/requires.txt +1 -1
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/tests/test_functions.py +4 -3
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.clang-format +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/dependabot.yml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/docs.yml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/linter.yml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/publish.yml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.github/workflows/test.yml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.gitignore +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.pre-commit-config.yaml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/.readthedocs.yaml +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/LICENSE +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/README.rst +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/_gmp_fractions.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/docs/conf.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/python_gmp.egg-info/SOURCES.txt +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/python_gmp.egg-info/dependency_links.txt +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/python_gmp.egg-info/top_level.txt +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/pythoncapi_compat.h +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/scripts/cibw_before_all.sh +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/scripts/cibw_repair_wheel_command.sh +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/scripts/cibw_repair_wheel_command_windows.bat +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/scripts/cibw_repair_wheel_command_windows.sh +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/scripts/fat_build_fix.diff +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/setup.cfg +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/setup.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/tests/conftest.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/tests/test_mpq.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/tests/test_mpz.py +0 -0
- {python_gmp-0.4.0a2 → python_gmp-0.4.0a4}/tests/test_outofmem.py +0 -0
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
sudo apt-get update
|
|
20
20
|
sudo apt-get install lcov
|
|
21
21
|
- run: bash scripts/cibw_before_all.sh
|
|
22
|
-
- run: pip install --upgrade pip setuptools setuptools_scm
|
|
22
|
+
- run: pip install --upgrade pip 'setuptools<=79.0.1' setuptools_scm
|
|
23
23
|
- run: pip --verbose install --editable .[tests]
|
|
24
24
|
- name: Build and run coverage tests
|
|
25
25
|
run: |
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
path-type: inherit
|
|
22
22
|
if: ${{ matrix.os == 'windows-2022' }}
|
|
23
23
|
- name: Build wheels
|
|
24
|
-
uses: pypa/cibuildwheel@v2.23.
|
|
24
|
+
uses: pypa/cibuildwheel@v2.23.3
|
|
25
25
|
env:
|
|
26
26
|
CIBW_ENABLE: pypy cpython-prerelease cpython-freethreading
|
|
27
27
|
CIBW_SKIP: pp38* pp39* *-win32 *-manylinux_i686 *-musllinux_*
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python-gmp
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.0a4
|
|
4
4
|
Summary: Safe bindings to the GNU GMP library
|
|
5
5
|
Author-email: Sergey B Kirpichev <skirpichev@gmail.com>
|
|
6
6
|
Maintainer-email: Sergey B Kirpichev <skirpichev@gmail.com>
|
|
7
|
-
License: MIT
|
|
7
|
+
License-Expression: MIT
|
|
8
8
|
Project-URL: Homepage, https://github.com/diofant/python-gmp
|
|
9
9
|
Project-URL: Source Code, https://github.com/diofant/python-gmp
|
|
10
10
|
Project-URL: Bug Tracker, https://github.com/diofant/python-gmp/issues
|
|
@@ -13,7 +13,6 @@ Keywords: gmp,multiple-precision,arbitrary-precision,bignum
|
|
|
13
13
|
Classifier: Development Status :: 3 - Alpha
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Intended Audience :: Science/Research
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: POSIX
|
|
19
18
|
Classifier: Programming Language :: C
|
|
@@ -39,7 +38,7 @@ License-File: LICENSE
|
|
|
39
38
|
Provides-Extra: tests
|
|
40
39
|
Requires-Dist: pytest; extra == "tests"
|
|
41
40
|
Requires-Dist: hypothesis; extra == "tests"
|
|
42
|
-
Requires-Dist: mpmath>=1.4.
|
|
41
|
+
Requires-Dist: mpmath>=1.4.0a5; extra == "tests"
|
|
43
42
|
Provides-Extra: docs
|
|
44
43
|
Requires-Dist: sphinx>=8.2; extra == "docs"
|
|
45
44
|
Provides-Extra: develop
|
|
@@ -48,6 +47,7 @@ Requires-Dist: pre-commit; extra == "develop"
|
|
|
48
47
|
Requires-Dist: pyperf; extra == "develop"
|
|
49
48
|
Requires-Dist: gmpy2>=2.2; platform_python_implementation != "PyPy" and extra == "develop"
|
|
50
49
|
Requires-Dist: python-flint>=0.7.0a5; extra == "develop"
|
|
50
|
+
Dynamic: license-file
|
|
51
51
|
|
|
52
52
|
Python-GMP
|
|
53
53
|
==========
|