Skip to content

Commit

Permalink
dropped support for sphinx because the sphinx.setup_command.BuildDoc …
Browse files Browse the repository at this point in the history
…is depreciated since sphinx 7.x.x
  • Loading branch information
monzelr committed Jun 24, 2024
1 parent 7ec8bf0 commit a93f7bb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
16 changes: 16 additions & 0 deletions documentation/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,19 @@ History
Version 1.0.0
-------------
- initial release for PyPi

Version 1.0.1
-------------
- added only documentation

Version 1.1.0
-------------
- new property 'is_valid' to check if the mmap of the numpy array is valid

Version 1.1.1
-------------
- bug fixes for __init__ and __del__ functions

Version 1.1.2
-------------
- added support for numpy 2.x.x - no change in API
7 changes: 0 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

"""The setup script."""

import sys
import os
import io
import os
import re
Expand Down Expand Up @@ -54,10 +52,6 @@ def find_version_author_email(*file_paths):
version, author, author_email = find_version_author_email(SOFTWARE_NAME, '__init__.py')


# this is only necessary when not using setuptools/distribute
from sphinx.setup_command import BuildDoc


requirements = ["numpy"]

test_requirements = ["numpy"]
Expand Down Expand Up @@ -96,7 +90,6 @@ def find_version_author_email(*file_paths):
keywords=keywords,
name=name,
packages=[SOFTWARE_NAME],
cmdclass={'build_sphinx': BuildDoc},
test_suite=test_suite,
tests_require=test_requirements,
url=url,
Expand Down

0 comments on commit a93f7bb

Please sign in to comment.