From e6fac1feef43a3fc3415fea22b08cc41b35fdcd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dieter=20Werthm=C3=BCller?= Date: Wed, 18 Dec 2024 22:11:47 +0100 Subject: [PATCH] Give tmp version --- .github/workflows/pytest.yml | 2 +- pyproject.toml | 2 +- src/__init__.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 5d68003..05de20a 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -51,7 +51,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install .[all] + python -m pip install .[tests] - name: Flake8 run: flake8 src/ tests/ diff --git a/pyproject.toml b/pyproject.toml index 19b171b..1e3e991 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires = [ name = "fftlog" description = "A python wrapper for FFTLog" readme = "README.rst" -version = "0.2.1" +version = "0.2.2dev1" # also in __init__.py authors = [ {name = "The emsig community", email = "info@emsig.xyz"}, ] diff --git a/src/__init__.py b/src/__init__.py index 4ede578..ceca5c3 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -3,6 +3,6 @@ __all__ = ['fhti', 'fftl', 'fht', 'fhtq'] # Version -# Not using setuptools_scm, as in pyfftlog, because of numpy-setup. -# Has to be adjusted in setup.py too! -__version__ = '0.2.1' +# Not currently using setuptools_scm, as in pyfftlog, because of numpy-setup. +# Has to be adjusted in pyproject.toml too! +__version__ = '0.2.2dev1'