Skip to content

Commit aa8c36e

Browse files
authored
Merge branch 'master' into master
2 parents 743c695 + 10e58ec commit aa8c36e

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# https://docs.travis-ci.com/user/languages/python/
2+
language: python
3+
matrix:
4+
include:
5+
- name: "Python 3.7 on Linux"
6+
python: 3.7
7+
dist: xenial
8+
install: pip3 install pyinstaller
9+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts:Scripts" ProperTree.command
10+
- name: "Python 3.7 on macOS"
11+
os: osx
12+
osx_image: xcode10.2
13+
language: shell
14+
install: pip3 install pyinstaller
15+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts:Scripts" ProperTree.command
16+
- name: "Python 3.7 on Windows"
17+
os: windows
18+
language: shell
19+
before_install: choco install python
20+
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
21+
install: pip3 install pyinstaller
22+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts;Scripts" ProperTree.command

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ C. Current (/Library/Frameworks/Python.framework/Versions/3.9/bin/python3)
100100
Q. Quit
101101
102102
Please select the python version to use:
103-
```
103+
```

0 commit comments

Comments
 (0)