Skip to content

Commit e6fac1f

Browse files
prisaejokva
authored andcommitted
Give tmp version
1 parent 224678f commit e6fac1f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install dependencies
5252
run: |
5353
python -m pip install --upgrade pip
54-
python -m pip install .[all]
54+
python -m pip install .[tests]
5555
5656
- name: Flake8
5757
run: flake8 src/ tests/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires = [
1111
name = "fftlog"
1212
description = "A python wrapper for FFTLog"
1313
readme = "README.rst"
14-
version = "0.2.1"
14+
version = "0.2.2dev1" # also in __init__.py
1515
authors = [
1616
{name = "The emsig community", email = "[email protected]"},
1717
]

src/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
__all__ = ['fhti', 'fftl', 'fht', 'fhtq']
44

55
# Version
6-
# Not using setuptools_scm, as in pyfftlog, because of numpy-setup.
7-
# Has to be adjusted in setup.py too!
8-
__version__ = '0.2.1'
6+
# Not currently using setuptools_scm, as in pyfftlog, because of numpy-setup.
7+
# Has to be adjusted in pyproject.toml too!
8+
__version__ = '0.2.2dev1'

0 commit comments

Comments
 (0)