Skip to content

Commit

Permalink
Go for 0.2 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaudin47 authored Dec 9, 2024
1 parent a14840c commit 16f0ff4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "numericalderivative"
version = "0.1"
version = "0.2"
description = "Numerical differentiation"
readme = "README.md"
keywords = [
Expand All @@ -30,7 +30,8 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy"
"numpy",
"scipy",
]

[project.optional-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"Optimal Step Size",
"Numerical Analysis",
],
version="0.1",
version="0.2",
packages=find_packages(),
install_requires=["numpy"],
install_requires=["numpy", "scipy"],
description="Numerical differentiation",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 16f0ff4

Please sign in to comment.