@@ -45,13 +45,12 @@ jobs:
45
45
with :
46
46
distribution : ' temurin'
47
47
java-version : ' 8'
48
- cache : ' sbt'
49
- - name : Install Python 3.7
48
+ - name : Install Python 3.8
50
49
uses : actions/setup-python@v2
51
50
with :
52
- python-version : 3.7.7
51
+ python-version : 3.8
53
52
architecture : x64
54
- - name : Install Python packages (Python 3.7 )
53
+ - name : Install Python packages (Python 3.8 )
55
54
run : |
56
55
python -m pip install --upgrade pip
57
56
pip install pyspark==3.4.0 numpy pytest
70
69
- name : Test Spark NLP in Python - Apache Spark 3.4.x
71
70
run : |
72
71
cd python
73
- python3.7 -m pytest -v -m fast
72
+ python3.8 -m pytest -v -m fast
74
73
spark35 :
75
74
if : " ! contains(toJSON(github.event.commits.*.message), '[skip test]')"
76
75
runs-on : macos-13
85
84
with :
86
85
distribution : ' adopt'
87
86
java-version : ' 8'
88
- cache : ' sbt'
89
87
- name : Install Python 3.10
90
88
uses : actions/setup-python@v2
91
89
with :
@@ -121,13 +119,12 @@ jobs:
121
119
with :
122
120
distribution : ' adopt'
123
121
java-version : ' 8'
124
- cache : ' sbt'
125
- - name : Install Python 3.7
122
+ - name : Install Python 3.8
126
123
uses : actions/setup-python@v2
127
124
with :
128
- python-version : 3.7.7
125
+ python-version : 3.8
129
126
architecture : x64
130
- - name : Install Python packages (Python 3.7 )
127
+ - name : Install Python packages (Python 3.8 )
131
128
run : |
132
129
python -m pip install --upgrade pip
133
130
pip install pyspark==3.3.1 numpy pytest
@@ -141,5 +138,5 @@ jobs:
141
138
- name : Test Spark NLP in Python - Apache Spark 3.3.x
142
139
run : |
143
140
cd python
144
- python3.7 -m pytest -v -m fast
141
+ python3.8 -m pytest -v -m fast
145
142
0 commit comments