From 96fed32a28a69bc7ae93631f7106e1489601d388 Mon Sep 17 00:00:00 2001 From: Ben Thompson Date: Tue, 10 May 2022 20:34:10 -0400 Subject: [PATCH] 22.05.10 --- VERSION | 2 +- release | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 9cf17c8..03f4b6f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -21.03.07 +22.05.10 diff --git a/release b/release index a405cac..7572ebf 100644 --- a/release +++ b/release @@ -1,12 +1,13 @@ PUBLISH TO PYPI: update the version number in VERSION with calver: yy.mm.dd -python setup.py sdist upload -r pypi +python setup.py sdist +twine upload dist/cppimport-VERSION.tar.gz SANITY TEST: open new terminal mamba create -n testenv python=3 pip conda activate testenv -pip install cppimport +pip install --force-reinstall --no-cache cppimport cd tests python -c 'import cppimport; assert(cppimport.imp("mymodule").add(1,2) == 3);'