File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,15 +39,24 @@ jobs:
3939 name : Build
4040 runs-on : ubuntu-latest
4141 steps :
42- - uses : actions/checkout@v2
42+ - uses : actions/checkout@v5
4343 - name : Set up JDK 17
44- uses : actions/setup-java@v2
44+ uses : actions/setup-java@v5
4545 with :
4646 java-version : 17
4747 distribution : ' temurin'
4848 - name : Install Protoc
4949 run : sudo apt install -y protobuf-compiler
50- - uses : actions/cache@v4
50+ - name : Set up Python
51+ uses : actions/setup-python@v5
52+ with :
53+ python-version : ' 3.11'
54+ cache : ' pip'
55+ - name : Install Python dependencies
56+ run : |
57+ python -m pip install --upgrade pip
58+ pip install -r python/src/pywy/requirements.txt
59+ - uses : actions/cache@v5
5160 with :
5261 path : ~/.m2/repository
5362 key : ${{ runner.os }}-maven
Original file line number Diff line number Diff line change 1+ # we support python 3.11
2+ numpy == 2.3.0
3+ cloudpickle == 3.0.0
You can’t perform that action at this time.
0 commit comments