Skip to content

Commit

Permalink
Fix the version dependencies to reduce breakages (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored Jan 25, 2024
1 parent 32c60eb commit 7ea3696
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[build-system]
requires = [
'gmsh==4.12.2',
'meshio==5.3.4',
'pygmsh==7.1.17',
'pyvista==0.43.2',
'setuptools',
'gmsh<4.12.3',
'meshio<5.3.5',
'pygmsh<7.1.18',
'pyvista<0.43.3',
'setuptools<69.0.4',
]
build-backend = 'setuptools.build_meta'

[project]
name = "pvgmsh"
dynamic = ['version']
dependencies = [
'gmsh==4.12.2',
'meshio==5.3.4',
'pygmsh==7.1.17',
'pyvista==0.43.2',
'gmsh<4.12.3',
'meshio<5.3.5',
'pygmsh<7.1.18',
'pyvista<0.43.3',
]

[tool.setuptools.dynamic]
Expand Down

0 comments on commit 7ea3696

Please sign in to comment.