From 207feff923b3cfe268be3bf26ca06a7cf370018a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Wed, 20 Sep 2023 18:55:51 +0200 Subject: [PATCH] TST: switch bleeding-edge CI to Python 3.12 --- .github/workflows/bleeding-edge.yaml | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bleeding-edge.yaml b/.github/workflows/bleeding-edge.yaml index f7e81f66..6096dfd5 100644 --- a/.github/workflows/bleeding-edge.yaml +++ b/.github/workflows/bleeding-edge.yaml @@ -20,7 +20,7 @@ on: jobs: build: runs-on: ubuntu-latest - name: Python3.11-dev + name: Python3.12-dev timeout-minutes: 60 concurrency: @@ -35,7 +35,7 @@ jobs: - name: Set up Python Dev Version uses: actions/setup-python@v4 with: - python-version: '3.11-dev' + python-version: '3.12-dev' - name: Install dependencies run: | diff --git a/pyproject.toml b/pyproject.toml index 5cad66df..cfbb2cb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,6 +124,7 @@ filterwarnings = [ "ignore:FigureCanvasAgg is non-interactive, and thus cannot be shown:UserWarning", "ignore:In accordance with NEP 32:DeprecationWarning", "ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning", + 'ignore:datetime\.datetime\.utcfromtimestamp\(\) is deprecated:DeprecationWarning', # https://github.com/dateutil/dateutil/pull/1285 ] [tool.coverage.run]