We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a1dedc commit 9e7ee7aCopy full SHA for 9e7ee7a
.github/workflows/pylint.yml
@@ -30,6 +30,8 @@ jobs:
30
with:
31
environment-file: ./environment.yml
32
environment-name: ocsmesh-env
33
+ extra-specs: |
34
+ python=3.12
35
- name: Install dependencies
36
shell: bash -l {0}
37
run: pip install .[testing]
pyproject.toml
@@ -20,7 +20,7 @@ maintainers = [
20
description = "Package to generate computational unstructured meshes for ocean simulation."
21
license = {file = "LICENSE"}
22
readme = "README.md"
23
-requires-python = '>=3.9, <3.15' # 3.8 -> scipy
+requires-python = '>=3.9, <3.13' # 3.8 -> scipy
24
dependencies = [
25
"colored-traceback<=0.3.0",
26
"fiona", "geopandas>=1.0.0",
@@ -41,11 +41,11 @@ ocsmesh = "ocsmesh.__main__:main"
41
[project.optional-dependencies]
42
gmsh = ["gmsh"]
43
jigsaw = ["jigsawpy"]
44
-triangle = ["triangle>=20250106"]
45
-testing = ['pylint>=2.14', 'jigsawpy', 'triangle>=20250106','gmsh']
+triangle = ["triangle"]
+testing = ['pylint>=2.14', 'jigsawpy', 'triangle','gmsh']
46
documentation = [
47
'sphinx < 7.0.0', # due to sphinx_rtd_theme support
48
'sphinx-rtd-theme', 'sphinx-argparse',
49
'mistune==0.8.4', 'm2r2', 'numpydoc',
50
- 'jigsawpy', 'triangle>=20250106', 'gmsh'
+ 'jigsawpy', 'triangle', 'gmsh'
51
]
0 commit comments