Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
5025e8ef
提交
5025e8ef
authored
9月 28, 2012
作者:
lamblin
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #965 from nouiz/np_scipy_version
Raise the numpy version supported to 1.5.0 and scipy to 0.8
上级
d482d6f4
d40fa208
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
11 行增加
和
8 行删除
+11
-8
.travis.yml
.travis.yml
+1
-1
install.txt
doc/install.txt
+5
-4
sparse.txt
doc/sandbox/sparse.txt
+4
-2
setup.py
setup.py
+1
-1
没有找到文件。
.travis.yml
浏览文件 @
5025e8ef
...
...
@@ -11,7 +11,7 @@ before_install:
-
sudo apt-get install -qq libatlas3gf-base libatlas-dev
install
:
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
-
"
pip
install
-q
numpy==1.
4.1
--use-mirrors"
-
"
pip
install
-q
numpy==1.
5
--use-mirrors"
#We can't install SciPy as there is no BLAS installed.
-
"
pip
install
.
--no-deps
--use-mirrors"
# command to run tests
...
...
doc/install.txt
浏览文件 @
5025e8ef
...
...
@@ -32,15 +32,16 @@ instructions below for detailed installation steps):
g++ >= 4.2 (for openmp that is currently always used)
more recent version recommended!
`NumPy <http://numpy.scipy.org/>`_ >= 1.
3
.0
Earlier versions
have memory leaks
.
`NumPy <http://numpy.scipy.org/>`_ >= 1.
5
.0
Earlier versions
could work, but we don't test it
.
`SciPy <http://scipy.org>`_
Only currently required for sparse matrix and special functions
support, but *highly* recommended. We recommend SciPy
>=0.
7
if you are using sparse matrices, because ``scipy.sparse``
>=0.
8
if you are using sparse matrices, because ``scipy.sparse``
is buggy in 0.6 (the ``scipy.csc_matrix`` version of ``dot()`` has a
bug with singleton dimensions, there may be more bugs).
bug with singleton dimensions, there may be more bugs) and we do not
tests with 0.7*.
A `BLAS`_ installation (with Level 3 functionality)
Including the development headers (``-dev``, ``-devel``, depending on
...
...
doc/sandbox/sparse.txt
浏览文件 @
5025e8ef
...
...
@@ -7,14 +7,16 @@ Sparse matrices
scipy.sparse
------------
Note that you want
scipy >= 0.7
.0.
Note that you want
SciPy >= 0.8
.0.
.. warning::
In
scip
y 0.6, ``scipy.csc_matrix.dot`` has a bug with singleton
In
SciP
y 0.6, ``scipy.csc_matrix.dot`` has a bug with singleton
dimensions. There may be more bugs. It also has inconsistent
implementation of sparse matrices.
We do not test again SciPy 0.7.*.
We describe the details of the compressed sparse matrix types.
``scipy.sparse.csc_matrix``
should be used if the columns are sparse.
...
...
setup.py
浏览文件 @
5025e8ef
...
...
@@ -153,7 +153,7 @@ def do_setup():
license
=
LICENSE
,
platforms
=
PLATFORMS
,
packages
=
find_packages
(),
install_requires
=
[
'numpy>=1.
3.0'
,
'scipy>=0.7
.0'
],
install_requires
=
[
'numpy>=1.
5.0'
,
'scipy>=0.8
.0'
],
package_data
=
{
''
:
[
'*.txt'
,
'*.rst'
,
'*.cu'
,
'*.cuh'
,
'*.c'
,
'*.sh'
,
'ChangeLog'
],
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论