Skip to content

Add pandas requirement, change numpy requirement to 1.22.4 #306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ impedance.py requires:

- Python (>=3.7)
- SciPy (>=1.0)
- NumPy (>=1.14)
- NumPy (>=1.22.4)
- Matplotlib (>=3.0)
- Altair (>=3.0)
- Pandas

Several example notebooks are provided in the `docs/source/examples/` directory. Opening these will require Jupyter notebook or Jupyter lab.

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
altair>=3.0
coveralls==3.2.0
matplotlib>=3.5
numpy>=1.14
numpy>=1.22.4
pandas
pytest>=4.6
pytest-cov
scipy>=1.0
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
packages=setuptools.find_packages(),
python_requires="~=3.7",
install_requires=['altair>=3.0', 'matplotlib>=3.5',
'numpy>=1.14', 'scipy>=1.0'],
'numpy>=1.22.4', 'scipy>=1.0',
'pandas'],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
Loading