From e89b26dbc06bb6cd6aef221473907a92eae8bac0 Mon Sep 17 00:00:00 2001 From: Hantao Cui Date: Fri, 8 Dec 2023 03:49:57 +0000 Subject: [PATCH] Trying to fix github actions with py 3.11 --- .github/workflows/pythonapp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 3d6aee2d3..503244691 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -9,17 +9,17 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Python 3.9 + - name: Set up Python 3.11 uses: actions/setup-python@v1 with: - python-version: 3.9 + python-version: 3.11 - name: Install dependencies run: | # work around a pip issue with extras_require: https://github.com/pypa/pip/issues/8323 python -m pip install -U "pip @ git+https://github.com/pypa/pip.git" python -m pip install --upgrade pip python -m pip install .[all] - python -m pip install nbmake==0.10 pytest-xdist line_profiler # add'l packages for notebook tests. + python -m pip install nbmake pytest-xdist line_profiler # add'l packages for notebook tests. - name: Lint with flake8 for pull requests if: github.event_name == 'pull_request' run: |