Skip to content

Commit 8908d57

Browse files
aryan26royadam2392
andauthored
[MAINT] Dropping checks for Python 3.8 in NetworkX checks (#80)
* Bumped up Python version in CI for networkx checks --------- Signed-off-by: Aryan Roy <[email protected]> Co-authored-by: Adam Li <[email protected]>
1 parent 2d6f1d3 commit 8908d57

File tree

5 files changed

+378
-954
lines changed

5 files changed

+378
-954
lines changed

Diff for: .circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ jobs:
7171

7272
- python/install-packages:
7373
pkg-manager: poetry
74-
cache-version: "v1" # change to clear cache
75-
args: "--with docs"
74+
cache-version: "v2" # change to clear cache
75+
args: "--with docs --extras viz"
7676
- run:
7777
name: Check poetry package versions
7878
command: |
@@ -251,4 +251,4 @@ workflows:
251251
filters:
252252
branches:
253253
only:
254-
- main
254+
- main

Diff for: .github/workflows/main.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
poetry-version: [1.3.0]
23+
poetry-version: [1.5.1]
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v3
@@ -56,8 +56,8 @@ jobs:
5656
fail-fast: false
5757
matrix:
5858
os: [ubuntu, macos, windows]
59-
python-version: [3.8, 3.9, "3.10"]
60-
poetry-version: [1.3.0]
59+
python-version: [3.9, "3.10", "3.11"]
60+
poetry-version: [1.5.1]
6161
name: build ${{ matrix.os }} - py${{ matrix.python-version }}
6262
runs-on: ${{ matrix.os }}-latest
6363
defaults:
@@ -89,7 +89,7 @@ jobs:
8989
- name: Build package
9090
run: poetry build
9191
- name: Upload package distribution files
92-
if: ${{ matrix.os == 'ubuntu' && matrix.python-version == '3.10' }}
92+
if: ${{ matrix.os == 'ubuntu' && matrix.python-version == '3.11' }}
9393
uses: actions/upload-artifact@v3
9494
with:
9595
name: package
@@ -113,8 +113,8 @@ jobs:
113113
fail-fast: false
114114
matrix:
115115
os: [ubuntu, macos, windows]
116-
python-version: [3.8, "3.10"] # oldest and newest supported versions
117-
poetry-version: [1.3.0]
116+
python-version: [3.9, "3.11"] # oldest and newest supported versions
117+
poetry-version: [1.5.1]
118118
networkx: [stable, main]
119119
name: Unit-test ${{ matrix.os }} - py${{ matrix.python-version }} - Networkx ${{ matrix.networkx }}
120120
runs-on: ${{ matrix.os }}-latest
@@ -137,7 +137,7 @@ jobs:
137137
run: pip install poetry-dynamic-versioning
138138
- name: Install packages via poetry
139139
run: |
140-
poetry install --with test,ts
140+
poetry install --with test
141141
- name: Install Networkx (main)
142142
if: "matrix.networkx == 'main'"
143143
run: |

0 commit comments

Comments
 (0)