Skip to content

Commit

Permalink
[icoscp_core] Restrict numpy dependency version to < 2, bump version
Browse files Browse the repository at this point in the history
Fix GH issue #334
  • Loading branch information
mirzov committed Aug 23, 2024
1 parent 0969b44 commit afc4e17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/python/icoscp_core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
name = "icoscp_core"
authors = [{name = "Oleg Mirzov", email = "oleg.mirzov@nateko.lu.se"}]
maintainers = [
{name = "Klara Broman", email = "klara.broman@nateko.lu.se"},
{name = "Oleg Mirzov", email = "oleg.mirzov@nateko.lu.se"},
{name = "Jonathan Schenk", email = "jonathan.schenk@nateko.lu.se"},
]
license = {file = "LICENSE"}
Expand All @@ -17,7 +17,7 @@ requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"dacite==1.8.1",
"numpy>=1.23"
"numpy >= 1.23, < 2"
]
[tool.flit.sdist]
include = ["src/icoscp_core/metacore.py"]
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/icoscp_core/src/icoscp_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
core services, such as authentication, metadata access, and data access.
"""

__version__ = "0.3.4"
__version__ = "0.3.5"

0 comments on commit afc4e17

Please sign in to comment.