Skip to content

Commit

Permalink
few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
stfbnc committed Nov 18, 2023
1 parent a6c69f1 commit 7c19e8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Python package for detrended fluctuation analysis (DFA) and related algorithms.
Requirements
============

- Python 3.7+
- numpy (>=1.22)
- Python 3.8+
- numpy (version >= 1.24.4 for Python < 3.12, version >= 1.26.2 for Python >= 3.12)

Installation
============
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ def get_extension(module_name, src_name, current_os):
readme_file.close()

setup(name="fathon",
version="1.3.3",
version="1.3.3.post1",
author="Stefano Bianchi",
author_email="fathon.package@gmail.com",
url="https://github.com/stfbnc/fathon.git",
license="GPLv3.0",
description="A pyhton package for detrended fluctuation analysis (DFA) and related algorithms.",
description="A python package for detrended fluctuation analysis (DFA) and related algorithms.",
long_description_content_type="text/markdown",
long_description=README,
packages=find_packages(),
Expand All @@ -101,7 +101,7 @@ def get_extension(module_name, src_name, current_os):
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering"],
python_requires=">=3.8",
install_requires=["numpy==1.24.4"],
install_requires=["numpy>=1.24.4"],
project_urls={"Documentation": "https://fathon.readthedocs.io/",
"Bug Reports": "https://github.com/stfbnc/fathon/issues",
"Source": "https://github.com/stfbnc/fathon/"},
Expand Down
2 changes: 1 addition & 1 deletion upload_release_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import argparse

min_py3 = 8
max_py3 = 12
max_py3 = 11


def download_file(url, folder_name):
Expand Down

0 comments on commit 7c19e8f

Please sign in to comment.