-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
1,368 additions
and
1,030 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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pygerber" | ||
version = "3.0.0a3" | ||
version = "3.0.0a4" | ||
description = "Parsing, formatting and rendering toolkit for Gerber X3 file format" | ||
authors = ["Krzysztof Wisniewski <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -30,6 +30,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: File Formats", | ||
|
@@ -45,45 +46,54 @@ classifiers = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8,<3.13" | ||
click = "^8.1.3" | ||
pyparsing = "^3.1.0" | ||
pydantic = "^2.3" | ||
tzlocal = "^5.0.1" | ||
pillow = "^10.0.0" | ||
python = "^3.8" | ||
click = [{ version = ">=8.0.0", python = ">=3.8" }] | ||
pyparsing = [ | ||
{ version = ">=3.0.0,<3.2.0", python = ">=3.8,<3.9" }, # Pyparsing dropped support for 3.8 in 3.1.0 | ||
{ version = ">=3.0.0", python = ">=3.9" }, # Constraints on version will be implied by Python version | ||
] | ||
pydantic = [ | ||
{ version = ">=2.0.0", python = ">=3.8" }, # Pydantic 2.10 still has support for Python 3.8 | ||
] | ||
pillow = [ | ||
{ version = ">=8.0.0,<11.0.0", python = ">=3.8,<3.9" }, # Pillow dropped support for 3.8 in 8.0 | ||
{ version = ">=8.0.0", python = ">=3.9" }, | ||
] | ||
numpy = [ | ||
{ version = "^1.24.4", markers = "python_version >= '3.8' and python_version <= '3.11'" }, | ||
{ version = "^1.26.1", markers = "python_version >= '3.12' and python_version < '3.13'" }, | ||
# We do not need bottom constraint as Python version implies >1.17 for 3.8 or even | ||
# later versions for later Python versions. | ||
{ version = "<1.25", python = ">=3.8,<3.9" }, # Numpy dropped support for 3.8 in 1.25 | ||
{ version = "<2.1", python = ">=3.9,<3.10" }, # Numpy dropped support for 3.9 in 2.1 | ||
{ version = "<3", python = ">=3.10" }, | ||
] | ||
pygls = { version = "^1.0.2", optional = true } | ||
lsprotocol = { version = "^2023.0.0a3", optional = true } | ||
drawsvg = { version = "^2.3.0", optional = true } | ||
typing-extensions = "^4.12.2" | ||
pygments = { version = "^2.18.0", optional = true } | ||
shapely = {version = "^2.0.6", optional = true} | ||
pygls = { version = ">=1.0.0,<2.0.0", optional = true } | ||
lsprotocol = { version = ">=2023,<2024", optional = true } | ||
drawsvg = { version = ">=2.0.0,<3.0.0", optional = true } | ||
typing-extensions = ">=4.12,<5.0" | ||
pygments = { version = ">=2.10.0,<3.0.0", optional = true } | ||
shapely = { version = ">=2.0.0,<3.0.0", optional = true } | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
mypy = "^1.6.1" | ||
poethepoet = ">=0.20,<0.28" | ||
pytest = ">=7.4,<9.0" | ||
ruff = ">=0.5.0,<0.7.0" | ||
mypy = "^1.13.0" | ||
poethepoet = "^0.29.0" | ||
pytest = "^8.3.3" | ||
ruff = "^0.7.3" | ||
jinja2 = "^3.1.2" | ||
pyyaml = "^6.0" | ||
pre-commit = "^3.3.3" | ||
autoflake = "^2.2.0" | ||
types-tzlocal = "^5.0.1.1" | ||
ipykernel = "^6.25.0" | ||
twine = ">=4.0.2,<6.0.0" | ||
docutils = "0.20.1" | ||
typing-extensions = "^4.11.0" | ||
filelock = "^3.14.0" | ||
dulwich = "^0.22.1" | ||
tzlocal = "^5.0.1" | ||
pytest-xdist = { extras = ["psutil"], version = "^3.3.1" } | ||
pytest-cov = ">=4.1,<6.0" | ||
pytest-lsp = "^0.4.2" | ||
pytest-asyncio = ">=0.23.7,<0.25.0" | ||
|
||
pytest-mock = "^3.14.0" | ||
|
||
[tool.poetry.group.docs] | ||
optional = true | ||
|
||
|
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
from __future__ import annotations | ||
|
||
__version__ = "3.0.0a3" | ||
__version__ = "3.0.0a4" |
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