-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor things for 5.1.0 release (#151)
* Minor quality of life updates Including dependency version bumps * Update CVRP notebook to use vrplib And stop using the old cvprlib package * Bump ALNS version to 5.1.0
- Loading branch information
Showing
3 changed files
with
34 additions
and
36 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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "alns" | ||
version = "5.0.4" | ||
version = "5.1.0" | ||
description = "A flexible implementation of the adaptive large neighbourhood search (ALNS) algorithm." | ||
authors = ["Niels Wouda <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -15,10 +15,10 @@ packages = [ | |
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -32,9 +32,11 @@ classifiers = [ | |
[tool.poetry.dependencies] | ||
python = "^3.8, <4.0" | ||
numpy = ">=1.18.0" | ||
matplotlib = ">=2.2.0" | ||
matplotlib = ">=3.5.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
# This group is needed to develop the package itself. | ||
[tool.poetry.group.dev.dependencies] | ||
vrplib = "^1.0.1" | ||
pre-commit = "^2.20.0" | ||
pytest = ">=6.0.0" | ||
pytest-cov = ">=2.6.1" | ||
|