File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -100,4 +100,4 @@ C. Current (/Library/Frameworks/Python.framework/Versions/3.9/bin/python3)
100
100
Q. Quit
101
101
102
102
Please select the python version to use:
103
- ```
103
+ ```
You can’t perform that action at this time.
0 commit comments