Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
tzutalin committed Jun 12, 2022
1 parent 9421295 commit 267c465
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 34 deletions.
21 changes: 17 additions & 4 deletions .gitignore
@@ -1,8 +1,5 @@
resources/icons/.DS_Store

resources.py

.idea*
labelImg.egg-info*

*.pyc
Expand All @@ -17,6 +14,8 @@ cscope*
.subvimrc
.vscode
*.pkl
Pipfile
*.xml

# MacOS System-Generated
.DS_Store
Expand All @@ -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.*
30 changes: 0 additions & 30 deletions .travis.yml
@@ -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
Expand Down

0 comments on commit 267c465

Please sign in to comment.