From 31817dcd7807a63e1750235e9e3930f83c65d682 Mon Sep 17 00:00:00 2001 From: Sal Date: Thu, 11 Apr 2024 02:25:46 -0400 Subject: [PATCH] updated to 1.4.0 on pip and also changed upload script --- build_pip.bat | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_pip.bat b/build_pip.bat index 84b5f4b..a133a6e 100644 --- a/build_pip.bat +++ b/build_pip.bat @@ -2,4 +2,4 @@ del build /Q del context_menu.egg-info /Q del dist /Q python setup.py sdist bdist_wheel -python -m twine upload dist/* +python -m twine upload --repository-url https://upload.pypi.org/legacy/ -u __token__ -p your_token_here dist/* \ No newline at end of file diff --git a/setup.py b/setup.py index 52d6434..739af98 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # This call to setup() does all the work setuptools.setup( name="context_menu", - version="1.3.0", + version="1.4.0", description="Library to create cross-platform native context menus.", long_description=README, long_description_content_type="text/markdown",