summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2023-04-14 07:27:28 -0700
committerGitHub <noreply@github.com>2023-04-14 19:57:28 +0530
commitfa3b9ee8870b38ca6ff23abaebbdf838b67fcc22 (patch)
tree6ad06299dc88309a47fe06aa4edd69cb56965fa3
parent873518a73a2a877c4c22c8310d5c85fb56ebc0ef (diff)
downloadnetworkx-fa3b9ee8870b38ca6ff23abaebbdf838b67fcc22.tar.gz
Remove Python 3.8 from CI (#6636)
* Drop Python 3.8 from test workflows. * Bump Pypy version to 3.9 in test workflow. * Bump Python to 3.10 in lint, mypy, randomly workflows. * Bump circleci to Python 3.10.
-rw-r--r--.circleci/config.yml4
-rw-r--r--.github/workflows/lint.yml2
-rw-r--r--.github/workflows/mypy.yml2
-rw-r--r--.github/workflows/pytest-randomly.yml2
-rw-r--r--.github/workflows/test.yml8
5 files changed, 9 insertions, 9 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index be5f7e0e..dbb3e782 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -4,7 +4,7 @@ version: 2.1
jobs:
documentation:
docker:
- - image: cimg/python:3.9
+ - image: cimg/python:3.10
steps:
- checkout
@@ -64,7 +64,7 @@ jobs:
image:
docker:
- - image: cimg/python:3.9
+ - image: cimg/python:3.10
steps:
- checkout
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 1f473885..d913affb 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.8]
+ python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml
index 2aacbeb2..fb51a669 100644
--- a/.github/workflows/mypy.yml
+++ b/.github/workflows/mypy.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.9]
+ python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/pytest-randomly.yml b/.github/workflows/pytest-randomly.yml
index 39c72ddc..1f45d609 100644
--- a/.github/workflows/pytest-randomly.yml
+++ b/.github/workflows/pytest-randomly.yml
@@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
- python-version: "3.9"
+ python-version: "3.10"
- name: Install packages
run: |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index cc82b101..ba6dd47b 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu, macos, windows]
- python-version: ["pypy-3.8"]
+ python-version: ["pypy-3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
@@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
os: [ubuntu, macos, windows]
- python-version: ["3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
@@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, macos-latest, windows-latest]
- python-version: ["3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
@@ -126,7 +126,7 @@ jobs:
strategy:
matrix:
os: [ubuntu, macos]
- python-version: ["3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}