Update .gitignore
This commit is contained in:
parent
94212951ee
commit
267c465eb2
21
.gitignore
vendored
21
.gitignore
vendored
@ -1,8 +1,5 @@
|
|||||||
resources/icons/.DS_Store
|
resources/icons/.DS_Store
|
||||||
|
|
||||||
resources.py
|
resources.py
|
||||||
|
|
||||||
.idea*
|
|
||||||
labelImg.egg-info*
|
labelImg.egg-info*
|
||||||
|
|
||||||
*.pyc
|
*.pyc
|
||||||
@ -17,6 +14,8 @@ cscope*
|
|||||||
.subvimrc
|
.subvimrc
|
||||||
.vscode
|
.vscode
|
||||||
*.pkl
|
*.pkl
|
||||||
|
Pipfile
|
||||||
|
*.xml
|
||||||
|
|
||||||
# MacOS System-Generated
|
# MacOS System-Generated
|
||||||
.DS_Store
|
.DS_Store
|
||||||
@ -27,4 +26,18 @@ cscope*
|
|||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
Pipfile
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
*.DS_Store
|
||||||
|
*.iml
|
||||||
|
.idea
|
||||||
|
.unison*
|
||||||
|
.attach*
|
||||||
|
tmp.*
|
||||||
|
|||||||
30
.travis.yml
30
.travis.yml
@ -1,38 +1,8 @@
|
|||||||
# vim: set ts=2 et:
|
# vim: set ts=2 et:
|
||||||
|
|
||||||
# run xvfb with 32-bit color
|
|
||||||
# xvfb-run -s '-screen 0 1600x1200x24+32' command_goes_here
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
|
||||||
# Python 3 + QT5
|
|
||||||
- os: linux
|
|
||||||
dist: focal
|
|
||||||
language: generic
|
|
||||||
python: "3.6"
|
|
||||||
env:
|
|
||||||
- QT=5
|
|
||||||
- CONDA=4.2.0
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- cmake
|
|
||||||
- xvfb
|
|
||||||
before_install:
|
|
||||||
# ref: https://repo.anaconda.com/archive/
|
|
||||||
- curl -O https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh
|
|
||||||
# ref: http://conda.pydata.org/docs/help/silent.html
|
|
||||||
- /bin/bash Anaconda3-2020.02-Linux-x86_64.sh -b -p $HOME/anaconda3
|
|
||||||
- export PATH="$HOME/anaconda3/bin:$PATH"
|
|
||||||
# ref: http://stackoverflow.com/questions/21637922/how-to-install-pyqt4-in-anaconda
|
|
||||||
- conda create -y -n labelImg-py3qt5 python=3.6
|
|
||||||
- source activate labelImg-py3qt5
|
|
||||||
- conda install -y pyqt=5
|
|
||||||
- conda install -y lxml
|
|
||||||
- make qt5py3
|
|
||||||
- xvfb-run make testpy3
|
|
||||||
|
|
||||||
# Pipenv Python 3.7.5 + QT5 - Build .app
|
# Pipenv Python 3.7.5 + QT5 - Build .app
|
||||||
- os: osx
|
- os: osx
|
||||||
language: generic
|
language: generic
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user