Skip to content

Commit

Permalink
python version
Browse files Browse the repository at this point in the history
  • Loading branch information
fxjung committed Aug 15, 2024
1 parent 7716207 commit 2a09857
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,13 @@ keywords = [
"physics",
]
readme = "README.rst"
requires-python = ">=3.9"
requires-python = "3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Cython",
"Programming Language :: C++",
"Operating System :: POSIX :: Linux",
Expand Down
1 change: 1 addition & 0 deletions test/test_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,7 @@ def test_python_cython_osm_graph():
cy_graph = CyGraph.from_nx(g_proj, make_attribute_distance="length")
py_graph = Graph.from_nx(g_proj, make_attribute_distance="length")

# mnemonic: d = distance, cy = cython, py = python, h = high node, o = other node
dcyho = cy_graph.d(high_node_id, other_node_id)
dpyho = py_graph.d(high_node_id, other_node_id)
dcyoh = cy_graph.d(other_node_id, high_node_id)
Expand Down

0 comments on commit 2a09857

Please sign in to comment.