From adf4317e959aec6357016806a8d1ba8c276835e9 Mon Sep 17 00:00:00 2001 From: Michael Zietz Date: Sat, 27 Apr 2024 19:46:10 -0500 Subject: [PATCH 1/2] fix: import `urllib` at the top level --- pytinytex/tinytex_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytinytex/tinytex_download.py b/pytinytex/tinytex_download.py index e548b76..3ab0151 100644 --- a/pytinytex/tinytex_download.py +++ b/pytinytex/tinytex_download.py @@ -3,7 +3,7 @@ import re import platform import shutil - +import urllib import zipfile import tarfile From b08da7e4ceb89ec3192b63ec7afc75662018a29e Mon Sep 17 00:00:00 2001 From: zietzm Date: Sun, 28 Apr 2024 11:31:13 -0500 Subject: [PATCH 2/2] chore: bump version to v0.3.4 after import fix --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 72c924d..5f864e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PyTinyTeX" -version = "0.3.3" +version = "0.3.4" description = "Thin wrapper for \"TinyTeX\" (MIT)" authors = ["JessicaTegner "] license = "mit"