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]