-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This updates Numpy to 2.0. This commit adds the pertaining notes to the README.
- Loading branch information
1 parent
b38179d
commit ece03d2
Showing
3 changed files
with
76 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" | |
|
||
[tool.poetry] | ||
name = "python_tsp" | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
description = "Library to solve the Traveling Salesperson Problem in pure Python." | ||
readme = "README_pypi.rst" | ||
authors = ["Fillipe Goulart <[email protected]>", "Luan Leonardo <>"] | ||
|
@@ -42,5 +42,6 @@ include = ["*.py", "*.pyi", "**/pyproject.toml"] | |
|
||
[tool.ruff.lint] | ||
select = [ | ||
"NPY201",# numpy2-deprecation | ||
] | ||
"NPY201", # numpy2-deprecation | ||
] | ||
|