diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-11-18 16:58:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-18 16:58:25 +0100 |
| commit | 19c4052f98e5dc4fe9d7edd7125df6a66efbd79f (patch) | |
| tree | 4a16157765ba95914d55dece2c6c2bb2ee5365a5 /.github/workflows/selenium.yml | |
| parent | 911b1619ab62317aaa7594d5fd52c1b8e43969a0 (diff) | |
Refs #34118 -- Used Python 3.12 for GitHub actions.
Diffstat (limited to '.github/workflows/selenium.yml')
| -rw-r--r-- | .github/workflows/selenium.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index 57f84ff821..57c82be242 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -24,9 +24,11 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' + - name: Install libmemcached-dev for pylibmc + run: sudo apt-get install libmemcached-dev - name: Install and upgrade packaging tools run: python -m pip install --upgrade pip setuptools wheel - run: python -m pip install -r tests/requirements/py3.txt -e . @@ -59,9 +61,11 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' + - name: Install libmemcached-dev for pylibmc + run: sudo apt-get install libmemcached-dev - name: Install and upgrade packaging tools run: python -m pip install --upgrade pip setuptools wheel - run: python -m pip install -r tests/requirements/py3.txt -r tests/requirements/postgres.txt -e . |
