cytriangle 1.0.3__tar.gz → 1.0.4__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.

Potentially problematic release.


This version of cytriangle might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cytriangle
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Object-oriented Cython wrapper of Shewchuk's Triangle Library
5
5
  Home-page: https://github.com/m-clare/cytriangle
6
6
  License: LGPL 3.0
@@ -9,19 +9,19 @@ Author: Maryanne Wachter
9
9
  Author-email: mclare@utsv.net
10
10
  Maintainer: Maryanne Wachter
11
11
  Maintainer-email: mclare@utsv.net
12
- Requires-Python: >=3.9
12
+ Requires-Python: >=3.10
13
13
  Classifier: Development Status :: 4 - Beta
14
14
  Classifier: Environment :: Console
15
15
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
16
16
  Classifier: License :: Other/Proprietary License
17
17
  Classifier: Natural Language :: English
18
18
  Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
23
  Classifier: Topic :: Scientific/Engineering
24
- Requires-Dist: numpy (>=1.25.2)
24
+ Requires-Dist: numpy (>=2.1.2)
25
25
  Project-URL: Repository, https://github.com/m-clare/cytriangle
26
26
  Description-Content-Type: text/markdown
27
27
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "cytriangle"
3
- version = "1.0.3"
3
+ version = "1.0.4"
4
4
  description = "Object-oriented Cython wrapper of Shewchuk's Triangle Library"
5
5
  authors = ["Maryanne Wachter <mclare@utsv.net>"]
6
6
  maintainers = [
@@ -24,10 +24,10 @@ classifiers = [
24
24
  "Topic :: Scientific/Engineering",
25
25
  "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
26
26
  "Natural Language :: English",
27
- "Programming Language :: Python :: 3.9",
28
27
  "Programming Language :: Python :: 3.10",
29
28
  "Programming Language :: Python :: 3.11",
30
29
  "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13"
31
31
  ]
32
32
  include = ["*.pyx", "*.pxd", "*.c", "src/c/*"]
33
33
 
@@ -40,8 +40,8 @@ script = "build_ext.py"
40
40
  generate-setup-file = true
41
41
 
42
42
  [tool.poetry.dependencies]
43
- python = ">=3.9"
44
- numpy = ">=1.25.2"
43
+ python = ">=3.10"
44
+ numpy = ">=2.1.2"
45
45
 
46
46
  [tool.poetry.group.dev.dependencies]
47
47
  pytest = ">=7.4.2"
@@ -11,11 +11,11 @@ package_data = \
11
11
  {'': ['*']}
12
12
 
13
13
  install_requires = \
14
- ['numpy>=1.25.2']
14
+ ['numpy>=2.1.2']
15
15
 
16
16
  setup_kwargs = {
17
17
  'name': 'cytriangle',
18
- 'version': '1.0.3',
18
+ 'version': '1.0.4',
19
19
  'description': "Object-oriented Cython wrapper of Shewchuk's Triangle Library",
20
20
  'long_description': '# CyTriangle\n## A Python Wrapped Triangle Library via Cython\n\n![ci-tests](https://github.com/m-clare/cytriangle/actions/workflows/ci.yaml/badge.svg)\n![code style](https://img.shields.io/badge/code%20style-black-000000.svg)\n![license](https://img.shields.io/github/license/m-clare/cytriangle)\n\n*CyTriangle* is an object-oriented python wrapper around Jonathan Richard Shewchuk\'s [Triangle](https://www.cs.cmu.edu/~quake/triangle.html) library. From its documentation:\n\n"Triangle generates exact Delaunay triangulations, constrained Delaunay triangulations, conforming Delaunay triangulations, Voronoi diagrams, and high-quality triangular meshes. The latter can be generated with no small or large angles, and are thus suitable for finite element analysis."\n\n*CyTriangle* utilizes Cython to provide an object-oriented interface to Triangle to enable easier inspection and modification of triangle objects.\n',
21
21
  'author': 'Maryanne Wachter',
@@ -27,7 +27,7 @@ setup_kwargs = {
27
27
  'packages': packages,
28
28
  'package_data': package_data,
29
29
  'install_requires': install_requires,
30
- 'python_requires': '>=3.9',
30
+ 'python_requires': '>=3.10',
31
31
  }
32
32
  from build_ext import *
33
33
  build(setup_kwargs)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes