Skip to content
Snippets Groups Projects
Commit a069c68b authored by Sushant Sharma-Chaudhary's avatar Sushant Sharma-Chaudhary
Browse files

removing numpy restrictions

parent ae61b349
No related branches found
No related tags found
1 merge request!83removing numpy restrictions
Pipeline #664155 passed
......@@ -53,7 +53,7 @@ tarball:
# run pytest
- !reference [".python:pytest", script]
# get list of entry points
- entrypoints=$(python -c "import pkg_resources; print('\n'.join(e.name for e in pkg_resources.iter_entry_points('console_scripts') if e.dist.project_name == 'ligo.em-bright'))")
- entrypoints=$(python -c "from importlib.metadata import distribution; print('\n'.join(e.name for e in distribution('ligo.em-bright').entry_points))")
# run --help for each of them
- for entrypoint in ${entrypoints};
do
......
This diff is collapsed.
......@@ -29,7 +29,7 @@ astropy = "^6.0"
pandas = "^2.2"
lalsuite = "^7.23"
h5py = "^3.11"
numpy = "^2.0"
numpy = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment