-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/v0.1.4' into develop
- Loading branch information
Showing
16 changed files
with
231 additions
and
205 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
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
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
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
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 = "colour-checker-detection" | ||
version = "0.1.3" | ||
version = "0.1.4" | ||
description = "Colour checker detection with Python" | ||
license = "BSD-3-Clause" | ||
authors = [ "Colour Developers <[email protected]>" ] | ||
|
@@ -44,18 +44,19 @@ exclude = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">= 3.8, < 3.11" | ||
colour-science = ">= 0.4.0" | ||
python = ">= 3.9, < 3.12" | ||
colour-science = ">= 0.4.2" | ||
imageio = ">= 2, < 3" | ||
numpy = ">= 1.19, < 2" | ||
numpy = ">= 1.20, < 2" | ||
opencv-python = ">= 4, < 5" | ||
scipy = ">= 1.5, < 2" | ||
scipy = ">= 1.7, < 2" | ||
typing-extensions = ">= 4, < 5" # Convenience for Google Colab. | ||
|
||
matplotlib = { version = ">= 3.2, != 3.5.0, != 3.5.1", optional = true } | ||
matplotlib = { version = ">= 3.4, != 3.5.0, != 3.5.1", optional = true } | ||
|
||
biblib-simple = { version = "*", optional = true } # Development dependency. | ||
black = { version = "*", optional = true } # Development dependency. | ||
blackdoc = { version = "*", optional = true } # Development dependency. | ||
coverage = { version = "*", optional = true } # Development dependency. | ||
coveralls = { version = "*", optional = true } # Development dependency. | ||
flake8 = { version = "*", optional = true } # Development dependency. | ||
|
@@ -79,6 +80,7 @@ twine = { version = "*", optional = true } # Development dependency. | |
[tool.poetry.dev-dependencies] | ||
biblib-simple = "*" | ||
black = "*" | ||
blackdoc = "*" | ||
coverage = "!= 6.3" | ||
coveralls = "*" | ||
flake8 = "*" | ||
|
@@ -103,6 +105,7 @@ twine = "*" | |
development = [ | ||
"biblib-simple", | ||
"black", | ||
"blackdoc", | ||
"coverage", | ||
"coveralls", | ||
"flake8", | ||
|
@@ -148,7 +151,7 @@ convention = "numpy" | |
add-ignore = "D104,D200,D202,D205,D301,D400" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-n auto --durations=5" | ||
addopts = "-n auto --dist=loadscope --durations=5" | ||
|
||
[build-system] | ||
requires = [ "poetry_core>=1.0.0" ] | ||
|
Oops, something went wrong.