@@ -65,18 +65,17 @@ jobs:
6565 uses : actions/cache@v3
6666 with :
6767 path : ${{ env.XDG_CACHE_HOME }}
68- key : ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml', '**/poetry.lock', '**/with-fuseki.sh', '**/*requirements*.txt') }}
68+ key : ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml', '**/poetry.lock', '**/with-fuseki.sh', '**/*requirements*.txt', '**/*requirements*.in' ) }}
6969 restore-keys : |
7070 ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-
7171 ${{ github.job }}-xdg-v1-${{ matrix.os }}-
7272 - name : Set up Python ${{ matrix.python-version }}
7373 uses : actions/setup-python@v4
7474 with :
7575 python-version : ${{ matrix.python-version }}
76- - name : Python Poetry Action
77- uses : abatilo/actions-poetry@v2.3.0
78- with :
79- poetry-version : 1.4.0
76+ - name : Install poetry
77+ run : |
78+ pip install -r devtools/requirements-poetry.in
8079 - uses : actions/setup-java@v3
8180 if : ${{ matrix.extensive-tests }}
8281 with :
@@ -133,18 +132,17 @@ jobs:
133132 uses : actions/cache@v3
134133 with :
135134 path : ${{ env.XDG_CACHE_HOME }}
136- key : ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml', '**/poetry.lock', '**/with-fuseki.sh', '**/*requirements*.txt') }}
135+ key : ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml', '**/poetry.lock', '**/with-fuseki.sh', '**/*requirements*.txt', '**/*requirements*.in' ) }}
137136 restore-keys : |
138137 ${{ github.job }}-xdg-v1-${{ matrix.os }}-${{ matrix.python-version }}-
139138 ${{ github.job }}-xdg-v1-${{ matrix.os }}-
140139 - name : Set up Python ${{env.DEFAULT_PYTHON}}
141140 uses : actions/setup-python@v4
142141 with :
143142 python-version : ${{ matrix.python-version }}
144- - name : Python Poetry Action
145- uses : abatilo/actions-poetry@v2.3.0
146- with :
147- poetry-version : 1.4.0
143+ - name : Install poetry
144+ run : |
145+ pip install -r devtools/requirements-poetry.in
148146 - name : Install Task
149147 uses : arduino/setup-task@v1
150148 with :
0 commit comments