Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
35
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
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!647
fix(py-astropy): relax py-cython dependency version range
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(py-astropy): relax py-cython dependency version range
fix-py-astropy
into
spack_v0.23.0
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Eleni Mathioulaki
requested to merge
fix-py-astropy
into
spack_v0.23.0
5 months ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
see
https://github.com/astropy/astropy/blob/v6.1.0/pyproject.toml#L128
1
0
Merge request reports
Compare
spack_v0.23.0
spack_v0.23.0 (base)
and
latest version
latest version
957a2808
1 commit,
5 months ago
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
packages/py-astropy/package.py
+
3
−
1
Options
@@ -40,7 +40,9 @@ class PyAstropy(PythonPackage):
# TODO: probably fix, unrealistic
depends_on
(
"
py-cython@0.29.13:
"
,
type
=
"
build
"
)
depends_on
(
"
py-cython@0.29.30
"
,
when
=
"
@5.1:6.0
"
,
type
=
"
build
"
)
depends_on
(
"
py-cython@3.0.0
"
,
when
=
"
@6.1.0:
"
,
type
=
"
build
"
)
# begin EBRAINS (modified): relax dependency version constraint
depends_on
(
"
py-cython@3.0
"
,
when
=
"
@6:
"
,
type
=
"
build
"
)
# end EBRAINS
# in newer pip versions --install-option does not exist
depends_on
(
"
py-pip@:23.0
"
,
type
=
"
build
"
)