Skip to content

Commit

Permalink
Give tmp version
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Dec 30, 2024
1 parent 78760ba commit 4c2bfa1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
]
Expand Down
6 changes: 3 additions & 3 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 4c2bfa1

Please sign in to comment.