Skip to content

Commit

Permalink
fix missing static files for sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
kklmn committed Mar 9, 2023
1 parent aa2073a commit 252777e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: parseq
Version: 0.9.93
Version: 0.9.94
Summary: ParSeq is a python software library for Parallel execution of Sequential data analysis.
Home-page: http://parseq.readthedocs.io
Author: Konstantin Klementiev
Expand Down
2 changes: 1 addition & 1 deletion parseq/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
__versioninfo__ = (0, 9, 93)
__versioninfo__ = (0, 9, 94)
__version__ = '.'.join(map(str, __versioninfo__))
__date__ = "9 Mar 2023"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def get_version():
'parseq.gui': ['_images/*.*'],
'parseq.help': [
'*.rst', '*.bat',
'_images/*.*', '_static/*.*', '_templates/*.*', 'exts/*.*',
'_themes/*/*.*', 'help/_themes/*/*/*.*'],
'_images/*.*', '_static/*.*', '_templates/*.*',
'_themes/*/*.*', '_themes/*/*/*.*', 'exts/*.*'],
'parseq.tests': ['*.png'],
},
install_requires=['numpy>=1.8.0', 'scipy>=0.17.0', 'matplotlib>=2.0.0',
Expand Down

0 comments on commit 252777e

Please sign in to comment.