New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tensorlayer

Package Overview
Dependencies
Maintainers
5
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tensorlayer - pypi Package Compare versions

Comparing version
1.11.0
to
1.11.1
+9
-9
PKG-INFO
Metadata-Version: 2.1
Name: tensorlayer
Version: 1.11.0
Version: 1.11.1
Summary: Reinforcement Learning and Deep Learning Library for Researcher and Engineer.

@@ -234,15 +234,15 @@ Home-page: https://github.com/tensorlayer/tensorlayer

Classifier: Operating System :: OS Independent
Provides-Extra: tf_gpu
Provides-Extra: test
Provides-Extra: all_gpu
Provides-Extra: all_cpu_dev
Provides-Extra: all_gpu_dev
Provides-Extra: all
Provides-Extra: extra
Provides-Extra: db
Provides-Extra: all_cpu
Provides-Extra: all_gpu
Provides-Extra: all_dev
Provides-Extra: tf_gpu
Provides-Extra: test
Provides-Extra: tf_cpu
Provides-Extra: doc
Provides-Extra: dev
Provides-Extra: contrib_loggers
Provides-Extra: db
Provides-Extra: all_gpu_dev
Provides-Extra: tf_cpu
Provides-Extra: dev
Provides-Extra: all_dev
Metadata-Version: 2.1
Name: tensorlayer
Version: 1.11.0
Version: 1.11.1
Summary: Reinforcement Learning and Deep Learning Library for Researcher and Engineer.

@@ -234,15 +234,15 @@ Home-page: https://github.com/tensorlayer/tensorlayer

Classifier: Operating System :: OS Independent
Provides-Extra: tf_gpu
Provides-Extra: test
Provides-Extra: all_gpu
Provides-Extra: all_cpu_dev
Provides-Extra: all_gpu_dev
Provides-Extra: all
Provides-Extra: extra
Provides-Extra: db
Provides-Extra: all_cpu
Provides-Extra: all_gpu
Provides-Extra: all_dev
Provides-Extra: tf_gpu
Provides-Extra: test
Provides-Extra: tf_cpu
Provides-Extra: doc
Provides-Extra: dev
Provides-Extra: contrib_loggers
Provides-Extra: db
Provides-Extra: all_gpu_dev
Provides-Extra: tf_cpu
Provides-Extra: dev
Provides-Extra: all_dev

@@ -6,7 +6,7 @@ imageio<2.5,>=2.3

progressbar2<3.39,>=3.38
requests<2.20,>=2.19
requests<2.21,>=2.19
scikit-learn<0.21,>=0.19
scikit-image<0.15,>=0.14
scipy<1.2,>=1.1
tqdm<4.28,>=4.23
tqdm<4.29,>=4.23
wrapt<1.11,>=1.10

@@ -23,3 +23,3 @@

hyperdash<0.16,>=0.15
tensorflow<1.12,>=1.6
tensorflow<1.13,>=1.6

@@ -41,9 +41,9 @@ [all_cpu_dev]

pydocstyle<3.1,>=2.1
pytest<3.9,>=3.6
pytest<3.11,>=3.6
pytest-cache<1.1,>=1.0
pytest-cov<2.7,>=2.5
pytest-xdist<1.24,>=1.22
pytest-xdist<1.25,>=1.22
sphinx<1.9,>=1.7
yapf<0.25,>=0.22
tensorflow<1.12,>=1.6
tensorflow<1.13,>=1.6

@@ -65,6 +65,6 @@ [all_dev]

pydocstyle<3.1,>=2.1
pytest<3.9,>=3.6
pytest<3.11,>=3.6
pytest-cache<1.1,>=1.0
pytest-cov<2.7,>=2.5
pytest-xdist<1.24,>=1.22
pytest-xdist<1.25,>=1.22
sphinx<1.9,>=1.7

@@ -77,3 +77,3 @@ yapf<0.25,>=0.22

hyperdash<0.16,>=0.15
tensorflow-gpu<1.12,>=1.6
tensorflow-gpu<1.13,>=1.6

@@ -95,9 +95,9 @@ [all_gpu_dev]

pydocstyle<3.1,>=2.1
pytest<3.9,>=3.6
pytest<3.11,>=3.6
pytest-cache<1.1,>=1.0
pytest-cov<2.7,>=2.5
pytest-xdist<1.24,>=1.22
pytest-xdist<1.25,>=1.22
sphinx<1.9,>=1.7
yapf<0.25,>=0.22
tensorflow-gpu<1.12,>=1.6
tensorflow-gpu<1.13,>=1.6

@@ -129,6 +129,6 @@ [contrib_loggers]

pydocstyle<3.1,>=2.1
pytest<3.9,>=3.6
pytest<3.11,>=3.6
pytest-cache<1.1,>=1.0
pytest-cov<2.7,>=2.5
pytest-xdist<1.24,>=1.22
pytest-xdist<1.25,>=1.22
sphinx<1.9,>=1.7

@@ -138,5 +138,5 @@ yapf<0.25,>=0.22

[tf_cpu]
tensorflow<1.12,>=1.6
tensorflow<1.13,>=1.6
[tf_gpu]
tensorflow-gpu<1.12,>=1.6
tensorflow-gpu<1.13,>=1.6

@@ -1,7 +0,10 @@

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Deep learning and Reinforcement learning library for Researchers and Engineers."""
MAJOR = 1
MINOR = 11
PATCH = 1
PRE_RELEASE = ''
# Use the following formatting: (major, minor, patch, prerelease)
VERSION = (1, 11, 0, '')
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
__shortversion__ = '.'.join(map(str, VERSION[:3]))

@@ -8,0 +11,0 @@ __version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])

Sorry, the diff of this file is too big to display