Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Klaus Noelp
ebrains-spack-builds
Commits
751bda77
Commit
751bda77
authored
2 years ago
by
Eleni Mathioulaki
Browse files
Options
Downloads
Patches
Plain Diff
add frites 0.4.3
parent
6f444538
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/py-frites/package.py
+2
-27
2 additions, 27 deletions
packages/py-frites/package.py
spack.yaml
+1
-1
1 addition, 1 deletion
spack.yaml
with
3 additions
and
28 deletions
packages/py-frites/package.py
+
2
−
27
View file @
751bda77
...
@@ -3,22 +3,6 @@
...
@@ -3,22 +3,6 @@
#
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# ----------------------------------------------------------------------------
# If you submit this package back to Spack as a pull request,
# please first remove this boilerplate and all FIXME comments.
#
# This is a template package file for Spack. We've put "FIXME"
# next to all the things you'll want to change. Once you've handled
# them, you can save this file and test your package like this:
#
# spack install py-frites
#
# You can edit this file again by typing:
#
# spack edit py-frites
#
# See the Spack documentation for more information on packaging.
# ----------------------------------------------------------------------------
from
spack
import
*
from
spack
import
*
...
@@ -27,7 +11,6 @@ class PyFrites(PythonPackage):
...
@@ -27,7 +11,6 @@ class PyFrites(PythonPackage):
"""
Frites is a Python toolbox for assessing information-based measures on
"""
Frites is a Python toolbox for assessing information-based measures on
human and animal neurophysiological data (M/EEG, Intracranial).
"""
human and animal neurophysiological data (M/EEG, Intracranial).
"""
# FIXME: Add a proper url for your package's homepage here.
homepage
=
"
https://brainets.github.io/frites/
"
homepage
=
"
https://brainets.github.io/frites/
"
pypi
=
"
frites/frites-0.4.2.tar.gz
"
pypi
=
"
frites/frites-0.4.2.tar.gz
"
...
@@ -35,25 +18,17 @@ class PyFrites(PythonPackage):
...
@@ -35,25 +18,17 @@ class PyFrites(PythonPackage):
# notify when the package is updated.
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']
# maintainers = ['github_user1', 'github_user2']
version
(
'
0.4.3
'
,
sha256
=
'
41a0aa2414196f1a08b7668b3e6be5872eda0f6814171408ef33af4904619f3a
'
)
version
(
'
0.4.2
'
,
sha256
=
'
5da63f6f91515ff0dbed0252a75fcbdeade4311bfd28d08cd644c89c85e6ac5a
'
)
version
(
'
0.4.2
'
,
sha256
=
'
5da63f6f91515ff0dbed0252a75fcbdeade4311bfd28d08cd644c89c85e6ac5a
'
)
# FIXME: Only add the python/pip/wheel dependencies if you need specific versions
# or need to change the dependency type. Generic python/pip/wheel dependencies are
# added implicity by the PythonPackage base class.
depends_on
(
'
python@3.7:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
python@3.7:
'
,
type
=
(
'
build
'
,
'
run
'
))
# depends_on('py-pip@X.Y:', type='build')
# depends_on('py-wheel@X.Y:', type='build')
# FIXME: Add a build backend, usually defined in pyproject.toml. If no such file
# exists, use setuptools.
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
# depends_on('py-flit-core', type='build')
# depends_on('py-poetry-core', type='build')
# FIXME: Add additional dependencies if required.
depends_on
(
'
py-numpy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-numpy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scipy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scipy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-mne
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-mne
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-mne@:1.1.1
'
,
type
=
(
'
build
'
,
'
run
'
),
when
=
'
@:0.4.2
'
)
depends_on
(
'
py-joblib
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-joblib
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-xarray
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-xarray
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-netcdf4
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-netcdf4
'
,
type
=
(
'
build
'
,
'
run
'
))
...
...
This diff is collapsed.
Click to expand it.
spack.yaml
+
1
−
1
View file @
751bda77
...
@@ -32,7 +32,7 @@ spack:
...
@@ -32,7 +32,7 @@ spack:
-
py-efel@4.0.4
-
py-efel@4.0.4
-
py-elephant@0.12.0
-
py-elephant@0.12.0
-
py-fairgraph@0.11.0
-
py-fairgraph@0.11.0
-
py-frites@0.4.
2
-
py-frites@0.4.
3
-
py-hbp-archive@1.1.1
-
py-hbp-archive@1.1.1
-
py-hbp-neuromorphic-platform@0.10.1
-
py-hbp-neuromorphic-platform@0.10.1
-
py-hbp-validation-client@0.8.2
-
py-hbp-validation-client@0.8.2
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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