Skip to content

Commit

Permalink
bump version again
Browse files Browse the repository at this point in the history
  • Loading branch information
scottprahl committed Sep 22, 2023
1 parent 29de5cd commit 49c5e6a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ clean:
rm -rf dist
rm -rf docs/_build
rm -rf docs/api
rm -rf docs/.ipynb-checkpoints
rm -rf docs/.ipynb_checkpoints
rm -rf pygrin.egg-info
rm -rf pygrin/__pycache__
rm -rf tests/__pycache__
Expand Down
2 changes: 1 addition & 1 deletion pygrin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
meridional_curve(n_0, pitch, length, r_i, theta_i)
plot_principal_planes(n_0, pitch, length, diameter)
"""
__version__ = '0.4.4'
__version__ = '0.5.1'
__author__ = 'Scott Prahl'
__email__ = 'scott.prahl@oit.edu'
__copyright__ = '2018-23, Scott Prahl'
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ classifiers =

[options]
packages = pygrin
install_requires = numpy; matplotlib
python_requires = >=3.4
python_requires = >=3.8
setup_requires = setuptools>=44
install_requires =
numpy
matplotlib

[flake8]
ignore = W503, D212, N802, N803, N806, E501
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def get_contents(filename):

setup(
name=project,
python_requires=">=3.8",
long_description=get_contents('README.rst'),
long_description_content_type='text/x-rst',
version=get_init_property('__version__'),
Expand Down

0 comments on commit 49c5e6a

Please sign in to comment.