Ver Fonte

fix conflicts

luoqianhui há 4 anos atrás
pai
commit
e73f996608
4 ficheiros alterados com 11 adições e 11 exclusões
  1. 4 4
      docs/install.md
  2. 1 1
      paddlex/__init__.py
  3. 2 2
      requirements.txt
  4. 4 4
      setup.py

+ 4 - 4
docs/install.md

@@ -16,11 +16,11 @@
 以下安装过程默认用户已安装好**paddlepaddle-gpu或paddlepaddle(版本大于或等于2.1.0)**,paddlepaddle安装方式参照[飞桨官网](https://www.paddlepaddle.org.cn/install/quick?docurl=/documentation/docs/zh/develop/install/pip/windows-pip.html)
 
 
-### PaddleX 2.0.0-rc4安装
+### PaddleX 2.0.0安装
 
 #### * Linux / macOS 操作系统
 
-使用pip安装方式安装2.0.0-rc4版本:
+使用pip安装方式安装2.0.0版本:
 
 ```commandline
 pip install paddlex==2.0.0rc4 -i https://mirror.baidu.com/pypi/simple
@@ -38,7 +38,7 @@ pip install pycocotools
 #### * Windows 操作系统
 
 
-使用pip安装方式安装2.0.0-rc4版本:
+使用pip安装方式安装2.0.0版本:
 
 ```commandline
 pip install paddlex==2.0.0rc4 -i https://mirror.baidu.com/pypi/simple
@@ -63,7 +63,7 @@ pip install -r requirements.txt
 python setup.py install
 ```
 
-如遇到pycocotools安装失败,参考[PaddleX 2.0.0-rc4安装](./install.md#paddlex-200-rc4安装)中介绍的解决方法。
+如遇到pycocotools安装失败,参考[PaddleX 2.0.0安装](./install.md#paddlex-200安装)中介绍的解决方法。
 
 ## <h2 id="2">2. PadldeX GUI开发模式安装</h2>
 

+ 1 - 1
paddlex/__init__.py

@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = '2.0.0rc4'
+__version__ = '2.0.0'
 
 from paddlex.utils.env import get_environ_info, init_parallel_env
 init_parallel_env()

+ 2 - 2
requirements.txt

@@ -4,9 +4,9 @@ colorama
 cython
 pycocotools
 visualdl >= 2.1.1
-paddleslim >= 2.1.1
+paddleslim == 2.1.1
 shapely
-paddlepaddle-gpu==2.1.2
+paddlepaddle-gpu == 2.1.2
 opencv-python
 scikit-learn==0.23.2
 lap

+ 4 - 4
setup.py

@@ -19,7 +19,7 @@ long_description = "PaddlePaddle Entire Process Development Toolkit"
 
 setuptools.setup(
     name="paddlex",
-    version='2.0.0rc4',
+    version='2.0.0',
     author="paddlex",
     author_email="paddlex@baidu.com",
     description=long_description,
@@ -29,9 +29,9 @@ setuptools.setup(
     packages=setuptools.find_packages(),
     setup_requires=['cython', 'numpy'],
     install_requires=[
-        "pycocotools;platform_system!='Windows'", 'pyyaml', 'colorama', 'tqdm',
-        'paddleslim>=2.1.2', 'visualdl>=2.1.1', 'shapely>=1.7.0',
-        'opencv-python', 'scipy', 'lap', 'motmetrics', 'scikit-learn==0.23.2', 
+        "pycocotools", 'pyyaml', 'colorama', 'tqdm',
+        'paddleslim==2.1.1', 'visualdl>=2.1.1', 'shapely>=1.7.0',
+        'opencv-python', 'scipy', 'lap', 'motmetrics', 'scikit-learn==0.23.2',
         'chardet'
     ],
     classifiers=[