Skip to content

Commit

Permalink
updated versions (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schefflera-Arboricola authored Oct 13, 2024
1 parent 812695c commit 03e5737
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for func in d:
## Installation

It is recommended to first refer the [NetworkX's INSTALL.rst](https:/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`

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dvcs": "git",
"environment_type": "virtualenv",
"show_commit_url": "https:/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",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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"
]

Expand Down

0 comments on commit 03e5737

Please sign in to comment.