From 31b415f98f71903301bc51628503d67f48f7d832 Mon Sep 17 00:00:00 2001 From: "Schmieder, Jacob" Date: Wed, 8 May 2024 09:50:08 +0000 Subject: [PATCH] changed version to test new upload --- .github/workflows/pypi.yml | 1 - scraibe/version.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 913dcba..56d06bf 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -46,7 +46,6 @@ jobs: pip install setuptools wheel - name: Build source distribution run: | - cat MANIFEST.in python3 setup.py sdist - name: Store the distribution packages uses: actions/upload-artifact@v3 diff --git a/scraibe/version.py b/scraibe/version.py index 01ff5da..9c4faa5 100644 --- a/scraibe/version.py +++ b/scraibe/version.py @@ -4,7 +4,7 @@ import subprocess as sp MAJOR = 0 MINOR = 1 MICRO = 1 -NANO = 1 +NANO = 2 ISRELEASED = False VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO, NANO)