Skip to content

Commit

Permalink
Add project to version 0.5.0
Browse files Browse the repository at this point in the history
This updates Numpy to 2.0.

This commit adds the pertaining notes to the README.
  • Loading branch information
fillipe-gsm committed Jul 13, 2024
1 parent b38179d commit ece03d2
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 65 deletions.
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,15 @@ To help keeping this library relatively up to date and maintainable but not to a
Release Notes and Changelog
===========================

Releases 0.5.X
--------------

Release 0.5.0
~~~~~~~~~~~~~
- Upgrade Numpy dependency to 2.0 as per `#58 <https://github.com/fillipe-gsm/python-tsp/issues/58>`_. Thanks, @CoolCat467, for the contribution.

Python support: Python >= 3.9

Releases 0.4.X
--------------

Expand Down Expand Up @@ -292,3 +301,4 @@ Contributors

- @FrickTobias
- @luanleonardo
- @CoolCat467
124 changes: 62 additions & 62 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <>"]
Expand Down Expand Up @@ -42,5 +42,6 @@ include = ["*.py", "*.pyi", "**/pyproject.toml"]

[tool.ruff.lint]
select = [
"NPY201",# numpy2-deprecation
]
"NPY201", # numpy2-deprecation
]

0 comments on commit ece03d2

Please sign in to comment.