Skip to content

Commit 235c7e0

Browse files
committed
Credit to joshinils for bug detection
1 parent 21e9d37 commit 235c7e0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,5 @@ All module functions are available from Graph and Graph3D (where applicable).
140140
- CodeMartyLikeYou for detecting a bug in `@memoize`
141141
- Tom Carroll for detecting the bug in del_edge and inspiration for topological sort.
142142
- Sappique for discovering bugs in `__eq__`, `copy` and `has_cycles`.
143+
- joshinils for discovering bug where `graph.edges(from_node=0)` was interpreted as `False`.
143144

graph/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
major, minor, patch = 2023, 7, 7
1+
major, minor, patch = 2023, 7, 8
22
__version_info__ = (major, minor, patch)
33
__version__ = ".".join(str(i) for i in __version_info__)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
long_description_content_type="text/markdown",
112112
keywords=keywords,
113113
packages=["graph"],
114-
python_requires=">=3.7",
114+
python_requires=">=3.8",
115115
include_package_data=True,
116116
data_files=[(".", ["LICENSE", "README.md", "requirements.txt"])],
117117
platforms="any",
@@ -121,10 +121,10 @@
121121
"Intended Audience :: Science/Research",
122122
"Natural Language :: English",
123123
"License :: OSI Approved :: MIT License",
124-
"Programming Language :: Python :: 3.7",
125124
"Programming Language :: Python :: 3.8",
126125
"Programming Language :: Python :: 3.9",
127126
"Programming Language :: Python :: 3.10",
128127
"Programming Language :: Python :: 3.11",
128+
"Programming Language :: Python :: 3.12",
129129
],
130130
)

0 commit comments

Comments
 (0)