Update .gitignore

This commit is contained in:
tzutalin
2022-06-12 10:31:38 -07:00
parent 94212951ee
commit 267c465eb2
2 changed files with 17 additions and 34 deletions

21
.gitignore vendored
View File

@@ -1,8 +1,5 @@
resources/icons/.DS_Store
resources.py
.idea*
labelImg.egg-info*
*.pyc
@@ -17,6 +14,8 @@ cscope*
.subvimrc
.vscode
*.pkl
Pipfile
*.xml
# MacOS System-Generated
.DS_Store
@@ -27,4 +26,18 @@ cscope*
ehthumbs.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.*

View File

@@ -1,38 +1,8 @@
# vim: set ts=2 et:
# run xvfb with 32-bit color
# xvfb-run -s '-screen 0 1600x1200x24+32' command_goes_here
jobs:
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
- os: osx
language: generic