From 4e54d13a6a85a4fdb59422912ab7bc715799d098 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Thu, 16 Oct 2025 07:34:59 -0400 Subject: [PATCH] Applying patch --- poetry.lock | 45 +++++++++++++++++++++++++++++++++++++++------ pyproject.toml | 2 +- 2 files changed, 40 insertions(+), 7 deletions(-) diff --git a/poetry.lock b/poetry.lock index 193eda8..4e0e63c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,18 +1,51 @@ -# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "superturtle" -version = "0.2.0" +version = "1.2.0" description = "Extensions to Python's turtle" optional = false -python-versions = "<4.0,>=3.9" +python-versions = "<4.0,>=3.10" groups = ["main"] files = [ - {file = "superturtle-0.2.0-py3-none-any.whl", hash = "sha256:ca3a31be3259387b4490846adbf64502acc9d23472912cc43497ab170e89f506"}, - {file = "superturtle-0.2.0.tar.gz", hash = "sha256:807fb419c1dba9cb809a22a68e72c0193bdeed4a9326eb36ad940b2a7ff6ac04"}, + {file = "superturtle-1.2.0-py3-none-any.whl", hash = "sha256:acc183da60a270177fcfbe6e70b41d17d7cd7f81fd5f2aea8d0f1defe9d6d5c7"}, + {file = "superturtle-1.2.0.tar.gz", hash = "sha256:df28bf8888cfed4c0645dafc07ecac996a30e5efd32c2c2d63264e0a965b0aa0"}, +] + +[package.dependencies] +svg-turtle = ">=1.0.0,<2.0.0" + +[[package]] +name = "svg-turtle" +version = "1.0.0" +description = "Use the Python turtle to write SVG files. With optional IPython integration." +optional = false +python-versions = "*" +groups = ["main"] +files = [ + {file = "svg_turtle-1.0.0-py3-none-any.whl", hash = "sha256:064b06a4ed210c31454ebf40d757e4b73a3543e960c5e75e1ebfa4c5a72f4c52"}, + {file = "svg_turtle-1.0.0.tar.gz", hash = "sha256:6a5a36d7f1b7d2b12ec6a6029d08c81c11ab6385eb8f14d9765b1acf84501640"}, +] + +[package.dependencies] +svgwrite = "*" + +[package.extras] +ipython = ["ipython"] + +[[package]] +name = "svgwrite" +version = "1.4.3" +description = "A Python library to create SVG drawings." +optional = false +python-versions = ">=3.6" +groups = ["main"] +files = [ + {file = "svgwrite-1.4.3-py3-none-any.whl", hash = "sha256:bb6b2b5450f1edbfa597d924f9ac2dd099e625562e492021d7dd614f65f8a22d"}, + {file = "svgwrite-1.4.3.zip", hash = "sha256:a8fbdfd4443302a6619a7f76bc937fc683daf2628d9b737c891ec08b8ce524c3"}, ] [metadata] lock-version = "2.1" python-versions = ">=3.10,<4.0" -content-hash = "6aad436bbbf760fa856344262eab22d62a167cac4e5dfefbf4be77d5a37428c9" +content-hash = "b5afffe1b68ffec30b452cc1ebd5b882e920f126f53332188ec7303cb592fa22" diff --git a/pyproject.toml b/pyproject.toml index cc37974..12d708d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ license = {text = "MIT"} readme = "README.md" requires-python = ">=3.10,<4.0" dependencies = [ - "superturtle (>=0.2.0,<0.3.0)" + "superturtle (>=1.2.0,<2.0.0)" ]