1 Star 0 Fork 0

mamh-mixed/pyftpdlib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
make.bat 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
Giampaolo Rodola 提交于 2024-06-23 22:44 . Drop Python 2.7 support (#635)
@echo off
rem ==========================================================================
rem Shortcuts for various tasks, emulating UNIX "make" on Windows.
rem It is primarly intended as a shortcut for compiling / installing
rem psutil ("make.bat build", "make.bat install") and running tests
rem ("make.bat test").
rem
rem To compile for a specific Python version run:
rem set PYTHON=C:\Python34\python.exe & make.bat build
rem
rem To use a different test script:
rem set PYTHON=C:\Python34\python.exe & set TSCRIPT=foo.py & make.bat test
rem ==========================================================================
if "%PYTHON%" == "" (
if exist "C:\Python37\python.exe" (
set PYTHON=C:\Python37\python.exe
) else (
set PYTHON=C:\Python27\python.exe
)
)
if "%TSCRIPT%" == "" (
set TSCRIPT=psutil\tests\__main__.py
)
rem Needed to locate the .pypirc file and upload exes on PyPI.
set HOME=%USERPROFILE%
%PYTHON% scripts\winmake.py %1 %2 %3 %4 %5 %6
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mamh-mixed/pyftpdlib.git
git@gitee.com:mamh-mixed/pyftpdlib.git
mamh-mixed
pyftpdlib
pyftpdlib
master

搜索帮助