From 9e9e1e5bfc396a637620e5ba41f965ff14993a31 Mon Sep 17 00:00:00 2001 From: Aditi Juneja <1509aditi@gmail.com> Date: Sun, 13 Oct 2024 12:26:51 +0530 Subject: [PATCH] updated versions --- .github/workflows/test.yml | 2 +- README.md | 2 +- benchmarks/asv.conf.json | 2 +- pyproject.toml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index af950b9e..778174c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: # fail-fast: true matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.10", "3.11", "3.12", "3.13-dev"] + python-version: ["3.11", "3.12", "3.13"] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/README.md b/README.md index 7c09a1f0..9d54ad19 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ for func in d: ## Installation It is recommended to first refer the [NetworkX's INSTALL.rst](https://github.com/networkx/networkx/blob/main/INSTALL.rst). -nx-parallel requires Python >=3.10. Right now, the only dependencies of nx-parallel are networkx and joblib. +nx-parallel requires Python >=3.11. Right now, the only dependencies of nx-parallel are networkx and joblib. ### Installing nx-parallel using `pip` diff --git a/benchmarks/asv.conf.json b/benchmarks/asv.conf.json index 67a8324b..4f53fc55 100644 --- a/benchmarks/asv.conf.json +++ b/benchmarks/asv.conf.json @@ -11,7 +11,7 @@ "dvcs": "git", "environment_type": "virtualenv", "show_commit_url": "https://github.com/networkx/nx-parallel/commit/", - "matrix": {"networkx": ["3.2"], "nx-parallel": []}, + "matrix": {"networkx": ["3.4.1"], "nx-parallel": []}, "benchmark_dir": "benchmarks", "env_dir": "env", "results_dir": "results", diff --git a/pyproject.toml b/pyproject.toml index 1f5998a0..942322ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires = ['setuptools>=61.2'] name = "nx-parallel" description = "A parallel backend for NetworkX. It uses joblib to run NetworkX algorithms on multiple CPU cores." readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.11" dynamic = ['version'] keywords = ["networkx", "graphs", "algorithms", "parallel"] license = {text = "BSD-3-Clause"} @@ -16,14 +16,14 @@ classifiers = [ 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: 3 :: Only', ] dependencies = [ - "networkx>=3.3", + "networkx>=3.4.1", "joblib>=1.4.2" ]