From 21246816f377aefac90ae03727bf15e58b04a8e1 Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Sat, 19 Dec 2020 21:07:45 -0800 Subject: [PATCH 1/5] publishing script --- publish_package.ps1 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 publish_package.ps1 diff --git a/publish_package.ps1 b/publish_package.ps1 new file mode 100644 index 0000000..0eed12e --- /dev/null +++ b/publish_package.ps1 @@ -0,0 +1,4 @@ +#build an sdist (source distribution) package for unimacro +#no wheel is built, one less thing to worry about +#use the no-setup option, which requires a +flit publish --format sdist --no-setup-py --repository testpypi \ No newline at end of file From 560e0dcc98b7b6feaa84713a318f8741f258d68e Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Sat, 26 Dec 2020 19:40:20 -0800 Subject: [PATCH 2/5] tweaked --- pyproject.toml | 1 - src/vocola2/__init__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c82f68b..7136b84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,6 @@ home-page = "https://github.com/dictation-toolbox/unimacro" description-file = "README.md" module="vocola2" requires=["wxPython >=4.1.1", - "debugypy > 1.2.0", "pywin32 >= 300"] diff --git a/src/vocola2/__init__.py b/src/vocola2/__init__.py index 0e11d3c..8bfe7b5 100644 --- a/src/vocola2/__init__.py +++ b/src/vocola2/__init__.py @@ -1,3 +1,3 @@ """Vocola""" -__version__ = '0.1' +__version__ = '0.1.0.1' From 04dad3ed4739a5883e5e472a4621ad3e7db044cd Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Mon, 28 Dec 2020 09:50:59 -0800 Subject: [PATCH 3/5] new depends --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7136b84..594fee6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ author-email = "quintijn@me.uk" home-page = "https://github.com/dictation-toolbox/unimacro" description-file = "README.md" module="vocola2" -requires=["wxPython >=4.1.1", - "pywin32 >= 300"] +requires=["unimacro", + "natlink"] classifiers=[ "Development Status :: 4 - Beta", From 0c31edff809cdabb5e067f0990b764dd0e3a1af5 Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Mon, 28 Dec 2020 09:51:41 -0800 Subject: [PATCH 4/5] up version number --- src/vocola2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vocola2/__init__.py b/src/vocola2/__init__.py index 8bfe7b5..43d8d1c 100644 --- a/src/vocola2/__init__.py +++ b/src/vocola2/__init__.py @@ -1,3 +1,3 @@ """Vocola""" -__version__ = '0.1.0.1' +__version__ = '0.1.0.2' From e0aa6f1f9b7320ba9587982d9045b030c5b244eb Mon Sep 17 00:00:00 2001 From: Doug Ransom Date: Wed, 30 Dec 2020 19:12:09 -0800 Subject: [PATCH 5/5] packaging instructions --- publish_package_pypi.ps1 | 4 ++++ publish_package.ps1 => publish_package_testpypi.ps1 | 0 2 files changed, 4 insertions(+) create mode 100644 publish_package_pypi.ps1 rename publish_package.ps1 => publish_package_testpypi.ps1 (100%) diff --git a/publish_package_pypi.ps1 b/publish_package_pypi.ps1 new file mode 100644 index 0000000..7add4b3 --- /dev/null +++ b/publish_package_pypi.ps1 @@ -0,0 +1,4 @@ +#build an sdist (source distribution) package for unimacro +#no wheel is built, one less thing to worry about +#use the no-setup option, which requires a +flit publish --format sdist --no-setup-py --repository pypi \ No newline at end of file diff --git a/publish_package.ps1 b/publish_package_testpypi.ps1 similarity index 100% rename from publish_package.ps1 rename to publish_package_testpypi.ps1