Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zhang Xin
Sls 1d Spec
Commits
19b3e470
Commit
19b3e470
authored
5 months ago
by
Zhang Xin
Browse files
Options
Download
Email Patches
Plain Diff
fix some dependencies version for setup bug
parent
a1fa4619
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
install.sh
+3
-1
install.sh
setup.py
+6
-4
setup.py
with
9 additions
and
5 deletions
+9
-5
install.sh
+
3
-
1
View file @
19b3e470
python setup.py develop
conda
install
numpy
==
1.26.4
conda
install
cython
==
3.0.6
conda
install
mpi4py
==
3.1.6
pip
install
-e
.
pip
install
-e
.
This diff is collapsed.
Click to expand it.
setup.py
+
6
-
4
View file @
19b3e470
...
@@ -53,10 +53,12 @@ setup(
...
@@ -53,10 +53,12 @@ setup(
license_files
=
"LICENSE"
,
license_files
=
"LICENSE"
,
packages
=
[
"SpecDisperser"
,
"SpecDisperser/disperse_c"
],
packages
=
[
"SpecDisperser"
,
"SpecDisperser/disperse_c"
],
install_requires
=
[
install_requires
=
[
#
'galsim',
'galsim'
,
# 'numpy',
# 'numpy',
# 'scipy',
'scipy'
,
# 'astropy',
'astropy'
,
'matplotlib'
,
'photutils'
],
],
ext_modules
=
cythonize
(
extensions
),
ext_modules
=
cythonize
(
extensions
,
language_level
=
"3"
),
)
)
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets