File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1313unsuccessfulbuild
1414/MpegCoder /x64 /
1515
16+ # Compressed files
17+ * .tar.xz
18+ * .tar.gz
19+ * .tar.bz2
20+ * .7z
21+ * .zip
22+ * .rar
23+
1624# Prerequisites
1725* .d
1826
Original file line number Diff line number Diff line change 7777 </PropertyGroup >
7878 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >
7979 <LinkIncremental >true</LinkIncremental >
80- <IncludePath >C:\Users\yjin4\Anaconda3 \envs\torch19 \include;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
81- <LibraryPath >C:\Users\yjin4\Anaconda3 \envs\torch19 \libs;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
80+ <IncludePath >C:\Users\yjin4\.conda \envs\py39 \include;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
81+ <LibraryPath >C:\Users\yjin4\.conda \envs\py39 \libs;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
8282 </PropertyGroup >
8383 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|Win32'" >
8484 <LinkIncremental >false</LinkIncremental >
8787 </PropertyGroup >
8888 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >
8989 <LinkIncremental >false</LinkIncremental >
90- <IncludePath >C:\Users\yjin4\Anaconda3 \envs\torch19 \include;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
91- <LibraryPath >C:\Users\yjin4\Anaconda3 \envs\torch19 \libs;C:\Users\yjin4\Anaconda3 \envs\torch19 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
90+ <IncludePath >C:\Users\yjin4\.conda \envs\py39 \include;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\include;..\include;$(IncludePath)</IncludePath >
91+ <LibraryPath >C:\Users\yjin4\.conda \envs\py39 \libs;C:\Users\yjin4\.conda \envs\py39 \lib\site-packages\numpy\core\lib;..\lib;$(LibraryPath)</LibraryPath >
9292 </PropertyGroup >
9393 <ItemDefinitionGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|Win32'" >
9494 <ClCompile >
Original file line number Diff line number Diff line change 33'''
44################################################################
55# WebTools
6- # @ PyCodes for Shell Project
6+ # @ FFMpeg encoder and decoder.
77# Yuchen Jin @ cainmagi@gmail.com
88# Requirements: (Pay attention to version)
99# python 3.3+
2323import urllib3
2424
2525try :
26- from tqdm .tqdm import wrapattr
26+ from tqdm import tqdm
27+ wrapattr = tqdm .wrapattr
2728except ImportError :
2829 import contextlib
2930
3031 @contextlib .contextmanager
3132 def wrapattr (req , mode = None , total = 0 , desc = None ):
32- return req
33+ yield req
3334
3435__all__ = [
3536 'get_token' ,
You can’t perform that action at this time.
0 commit comments