Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-advanced-user-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-advanced-user-tools
Commits
66b4e64b
Commit
66b4e64b
authored
4 years ago
by
Alexander Kreft
Browse files
Options
Downloads
Patches
Plain Diff
REL: Make h5py optional
parent
27d4959c
No related branches found
No related tags found
1 merge request
!11
REL: Make h5py optional
Pipeline
#10641
failed
4 years ago
Stage: setup
Stage: cert
Stage: style
Stage: unittest
Stage: integrationtest
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README_SETUP.md
+8
-0
8 additions, 0 deletions
README_SETUP.md
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
10 additions
and
1 deletion
README_SETUP.md
+
8
−
0
View file @
66b4e64b
...
...
@@ -12,6 +12,11 @@ Dependencies will be installed automatically if you use the below described proc
-
`caosdb>=0.4.0`
-
`openpyxl>=3.0.0`
-
`xlrd>=1.2.0`
-
`pandas>=1.2.0`
-
`numpy>=1.17.3`
If you want to use the optional h5-crawler the following dependencies will be installed additionally:
-
`h5py>=3.3.0`
For testing:
-
`tox`
...
...
@@ -21,6 +26,9 @@ For testing:
-
`pip install . --user`
-
`pip install tox --user`
Optional h5-crawler:
-
`pip install .[h5-crawler] --user`
## Run Unit Tests
`tox`
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
1
View file @
66b4e64b
...
...
@@ -159,8 +159,9 @@ def setup_package():
"
pandas>=1.2.0
"
,
"
numpy>=1.17.3
"
,
"
xlrd>=2.0
"
,
"
h5py
"
,
],
extras_require
=
{
"
h5-crawler
"
:
[
"
h5py>=3.3.0
"
,
],
},
packages
=
find_packages
(
'
src
'
),
package_dir
=
{
''
:
'
src
'
},
setup_requires
=
[
"
pytest-runner>=2.0,<3dev
"
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment