Skip to content

Commit

Permalink
separate flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Oct 18, 2024
1 parent e9ed5be commit 6efe5bd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install .[all]
- name: Flake8
run: flake8 docs/conf.py pyfftlog/ tests/ examples/

- name: Test with pytest
run: pytest --cov=pyfftlog --flake8
run: pytest --cov=pyfftlog

- name: Coveralls
# [pin @develop@20230609]
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ Changelog
#########


v0.2.1 : pyproject.toml
-----------------------
v0.2.1 : emsig
--------------

**2024-10-18**

Maintenance; changed from ``setup.py`` to ``pyproject.toml``.
Maintenance

- Move from ``prisae`` to ``emsig``.
- Changed from ``setup.py`` to ``pyproject.toml``.
- Ready for numpy v2.
- Updated all CI.


v0.2.0 : First packaged release
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ prune tests
prune examples
prune .github
exclude MANIFEST.in
exclude CHANGELOG.rst
exclude Makefile
exclude .gitignore
exclude .readthedocs.yml
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Appendix B of `Hamilton (2000)
<https://dx.doi.org/10.1046/j.1365-8711.2000.03071.x>`_ and published at
`jila.colorado.edu/~ajsh/FFTLog <https://jila.colorado.edu/~ajsh/FFTLog>`_.

A simple `f2py`-wrapper (`fftlog`) can be found on `github.com/prisae/fftlog
<https://github.com/prisae/fftlog>`_. Tests have shown that `fftlog` is a bit
A simple `f2py`-wrapper (`fftlog`) can be found on `github.com/emsig/fftlog
<https://github.com/emsig/fftlog>`_. Tests have shown that `fftlog` is a bit
faster than `pyfftlog`, but `pyfftlog` is easier to implement, as you only need
`NumPy` and `SciPy`, without the need to compile anything.

Expand All @@ -21,7 +21,7 @@ test from the original code, and my use case, which is `pyfftlog.fftl` with
(forward). Please let me know if you encounter any issues.

- **Documentation**: https://pyfftlog.readthedocs.io
- **Source Code**: https://github.com/prisae/pyfftlog
- **Source Code**: https://github.com/emsig/pyfftlog


Description of FFTLog from the FFTLog-Website
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
'menu_links_name': 'Links',
'menu_links': [
('<i class="fa fa-github fa-fw"></i> Source Code',
'https://github.com/prisae/pyfftlog'),
'https://github.com/emsig/pyfftlog'),
],
}

Expand Down

0 comments on commit 6efe5bd

Please sign in to comment.