Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
14f932a2
提交
14f932a2
authored
7月 28, 2017
作者:
Ghislain Antony Vaillant
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Replace nose-parameterized by parameterized
The former is deprecated in favor of the latter.
上级
a9a105f6
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
9 行增加
和
9 行删除
+9
-9
.travis.yml
.travis.yml
+1
-1
install_windows.txt
doc/install_windows.txt
+1
-1
requirement-rtd.txt
requirement-rtd.txt
+1
-1
setup.py
setup.py
+1
-1
test_dnn.py
theano/gpuarray/tests/test_dnn.py
+1
-1
test_conv3d2d.py
theano/tensor/nnet/tests/test_conv3d2d.py
+1
-1
test_corr3d.py
theano/tensor/nnet/tests/test_corr3d.py
+1
-1
test_pool.py
theano/tensor/signal/tests/test_pool.py
+1
-1
unittest_tools.py
theano/tests/unittest_tools.py
+1
-1
没有找到文件。
.travis.yml
浏览文件 @
14f932a2
...
@@ -36,7 +36,7 @@ install:
...
@@ -36,7 +36,7 @@ install:
-
source activate pyenv
-
source activate pyenv
-
if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install pydot; else pip install pydot-ng; fi
-
if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install pydot; else pip install pydot-ng; fi
-
pip install . --no-deps --upgrade
-
pip install . --no-deps --upgrade
-
pip install flake8-future-import
nose-parameterized==0.5.0
sphinx_rtd_theme
-
pip install flake8-future-import
parameterized
sphinx_rtd_theme
# nose-exclude plugin allow us to tell nosetests to exclude folder with --exclude-dir=path/to/directory.
# nose-exclude plugin allow us to tell nosetests to exclude folder with --exclude-dir=path/to/directory.
-
pip install nose-exclude nose-timer
-
pip install nose-exclude nose-timer
...
...
doc/install_windows.txt
浏览文件 @
14f932a2
...
@@ -24,7 +24,7 @@ Install requirements and optional packages
...
@@ -24,7 +24,7 @@ Install requirements and optional packages
.. code-block:: bash
.. code-block:: bash
conda install numpy scipy mkl-service libpython <m2w64-toolchain> <nose> <
nose-
parameterized> <sphinx> <pydot-ng>
conda install numpy scipy mkl-service libpython <m2w64-toolchain> <nose> <parameterized> <sphinx> <pydot-ng>
.. note::
.. note::
...
...
requirement-rtd.txt
浏览文件 @
14f932a2
sphinx>=1.3.0
sphinx>=1.3.0
pygments
pygments
nose>=1.3.0
nose>=1.3.0
nose-parameterized>=0.5.0
parameterized
scipy==0.13
scipy==0.13
-e . --install-option="--no-deps"
-e . --install-option="--no-deps"
setup.py
浏览文件 @
14f932a2
...
@@ -164,7 +164,7 @@ def do_setup():
...
@@ -164,7 +164,7 @@ def do_setup():
install_requires
=
[
'numpy>=1.9.1'
,
'scipy>=0.14'
,
'six>=1.9.0'
],
install_requires
=
[
'numpy>=1.9.1'
,
'scipy>=0.14'
,
'six>=1.9.0'
],
# pygments is a dependency for Sphinx code highlight
# pygments is a dependency for Sphinx code highlight
extras_require
=
{
extras_require
=
{
'test'
:
[
'nose>=1.3.0'
,
'
nose-parameterized>=0.5.0
'
,
'flake8<3'
],
'test'
:
[
'nose>=1.3.0'
,
'
parameterized
'
,
'flake8<3'
],
'doc'
:
[
'Sphinx>=0.5.1'
,
'pygments'
]
'doc'
:
[
'Sphinx>=0.5.1'
,
'pygments'
]
},
},
package_data
=
{
package_data
=
{
...
...
theano/gpuarray/tests/test_dnn.py
浏览文件 @
14f932a2
...
@@ -3,7 +3,7 @@ import logging
...
@@ -3,7 +3,7 @@ import logging
from
collections
import
OrderedDict
from
collections
import
OrderedDict
from
nose.plugins.skip
import
SkipTest
from
nose.plugins.skip
import
SkipTest
from
nose_
parameterized
import
parameterized
from
parameterized
import
parameterized
import
numpy
as
np
import
numpy
as
np
from
itertools
import
product
,
chain
from
itertools
import
product
,
chain
...
...
theano/tensor/nnet/tests/test_conv3d2d.py
浏览文件 @
14f932a2
...
@@ -2,7 +2,7 @@ from __future__ import absolute_import, print_function, division
...
@@ -2,7 +2,7 @@ from __future__ import absolute_import, print_function, division
import
time
import
time
from
nose.plugins.skip
import
SkipTest
from
nose.plugins.skip
import
SkipTest
from
nose_
parameterized
import
parameterized
from
parameterized
import
parameterized
import
numpy
as
np
import
numpy
as
np
try
:
try
:
from
scipy
import
ndimage
from
scipy
import
ndimage
...
...
theano/tensor/nnet/tests/test_corr3d.py
浏览文件 @
14f932a2
...
@@ -3,7 +3,7 @@ from __future__ import absolute_import, print_function, division
...
@@ -3,7 +3,7 @@ from __future__ import absolute_import, print_function, division
from
nose.plugins.skip
import
SkipTest
from
nose.plugins.skip
import
SkipTest
from
nose.plugins.attrib
import
attr
from
nose.plugins.attrib
import
attr
from
nose.tools
import
assert_equals
from
nose.tools
import
assert_equals
from
nose_
parameterized
import
parameterized
from
parameterized
import
parameterized
import
numpy
as
np
import
numpy
as
np
from
six
import
integer_types
from
six
import
integer_types
...
...
theano/tensor/signal/tests/test_pool.py
浏览文件 @
14f932a2
from
__future__
import
absolute_import
,
print_function
,
division
from
__future__
import
absolute_import
,
print_function
,
division
from
nose.plugins.skip
import
SkipTest
from
nose.plugins.skip
import
SkipTest
from
nose_
parameterized
import
parameterized
from
parameterized
import
parameterized
from
itertools
import
product
from
itertools
import
product
import
os
import
os
import
unittest
import
unittest
...
...
theano/tests/unittest_tools.py
浏览文件 @
14f932a2
...
@@ -4,7 +4,7 @@ from functools import wraps
...
@@ -4,7 +4,7 @@ from functools import wraps
import
logging
import
logging
import
sys
import
sys
import
unittest
import
unittest
from
nose_
parameterized
import
parameterized
from
parameterized
import
parameterized
from
six
import
integer_types
from
six
import
integer_types
from
six.moves
import
StringIO
from
six.moves
import
StringIO
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论