File tree 3 files changed +6
-43
lines changed
3 files changed +6
-43
lines changed Original file line number Diff line number Diff line change 16
16
strategy :
17
17
matrix :
18
18
python-version : [3.6, 3.7, 3.8, 3.9]
19
- pyinstaller : [PyInstaller, "https://github.com/pyinstaller/pyinstaller/archive/develop.zip"]
19
+ pyinstaller : ["https://github.com/pyinstaller/pyinstaller/archive/develop.zip"]
20
20
fail-fast : false
21
21
steps :
22
22
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -15,27 +15,10 @@ services:
15
15
jobs :
16
16
fast_finish : true
17
17
include :
18
- - &test
19
- stage : PyInstaller stable release
20
- python : 3.9
21
- install :
22
- # Upgrade to the latest pip.
23
- - python -m pip install -U pip setuptools wheel
24
18
25
- # Install hooks-contrib
26
- - pip install -e .
27
- - pip install -r requirements-test-libraries.txt
28
-
29
- # Install PyInstaller
30
- - pip install pyinstaller
31
- script : |
32
- pyi_version="$(python -m PyInstaller --version)"
33
- if [ "$pyi_version" != *"3.6"* ]; then
34
- python -m PyInstaller.utils.run_tests -c pytest.ini
35
- fi
36
-
37
- - << : *test
19
+ - &test
38
20
stage : PyInstaller development version
21
+ python : 3.9
39
22
install : &install-develop
40
23
# Upgrade to the latest pip.
41
24
- python -m pip install -U pip setuptools wheel
47
30
# Install PyInstaller
48
31
- pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
49
32
33
+ script : |
34
+ python -m PyInstaller.utils.run_tests -c pytest.ini
35
+
50
36
- << : *test
51
37
python : 3.8
52
38
- << : *test
Original file line number Diff line number Diff line change @@ -9,29 +9,6 @@ environment:
9
9
APPVEYOR_SAVE_CACHE_ON_ERROR : true
10
10
11
11
matrix :
12
- - PYTHON : C:\Python39-x64
13
- PYTHON_VERSION : " 3.9"
14
- PYTHON_ARCH : 64
15
- INSTALL_URL : pyinstaller # INSTALL_URL is passed straight to pip with `pip install INSTALL_URL`.
16
- USE_DEV : " False"
17
-
18
- - PYTHON : C:\Python38-x64
19
- PYTHON_VERSION : " 3.8"
20
- PYTHON_ARCH : 64
21
- INSTALL_URL : pyinstaller # INSTALL_URL is passed straight to pip with `pip install INSTALL_URL`.
22
- USE_DEV : " False"
23
-
24
- - PYTHON : C:\Python37-x64
25
- PYTHON_VERSION : " 3.7"
26
- PYTHON_ARCH : 64
27
- INSTALL_URL : pyinstaller # INSTALL_URL is passed straight to pip with `pip install INSTALL_URL`.
28
- USE_DEV : " False"
29
-
30
- - PYTHON : C:\Python36-x64
31
- PYTHON_VERSION : " 3.6"
32
- PYTHON_ARCH : 64
33
- INSTALL_URL : pyinstaller
34
- USE_DEV : " False"
35
12
36
13
- PYTHON : C:\Python39-x64
37
14
PYTHON_VERSION : " 3.9"
You can’t perform that action at this time.
0 commit comments