Skip to content

Commit 78a5d16

Browse files
committed
Merge with PIVX-SPMT master
2 parents 4921e93 + 4dd584b commit 78a5d16

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
/.project
22
/.pydevproject
33
/.settings/
4+
/.idea/
45
/build/
56
/dist/
67
/__pycache__/
78
/lastLogs.html
89
/masternode.conf
9-
/.idea/
10+
/venv/
11+
/.pytest_cache/

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: python
2+
sudo: required
3+
matrix:
4+
include:
5+
- name: "Python 3.7.1 on Xenial Linux"
6+
python: 3.7
7+
dist: xenial
8+
before_install: sudo apt-get install -y libusb-1.0-0-dev libudev-dev
9+
- name: "Python 3.7.2 on macOS"
10+
os: osx
11+
osx_image: xcode10.2
12+
language: shell
13+
env: PATH=/Users/travis/Library/Python/3.7/bin:$PATH
14+
- name: "Python 3.7.3 on Windows"
15+
os: windows
16+
language: shell
17+
before_install: choco install python vcredist-all
18+
env: PATH=/c/Python37:/c/Python37/Scripts:/c/Users/travis/AppData/Roaming/Python/Python37/Scripts:$PATH
19+
install:
20+
- pip3 install --user -r requirements.txt || pip3 install -r requirements.txt
21+
- pip3 install --user pyinstaller==3.3 || pip3 install pyinstaller==3.3
22+
script: pyinstaller --onefile --windowed SecurePivxMasternodeTool.spec

0 commit comments

Comments
 (0)