|
12 | 12 | history = history_file.read() |
13 | 13 |
|
14 | 14 | install_requires = [ |
15 | | - 'mlblocks>=0.6.1', |
| 15 | + 'mlblocks>=0.6.2', |
16 | 16 | 'pandas>=1.5.3', |
17 | | - 'numpy>=1.24.4', |
18 | | - 'scipy>=1.10.1', |
| 17 | + 'numpy>=1.26.0', |
| 18 | + 'scipy>=1.11.3', |
19 | 19 | ] |
20 | 20 |
|
21 | 21 | setup_requires = [ |
|
41 | 41 | 'sphinx_rtd_theme>=0.2.4,<0.5', |
42 | 42 | 'autodocsumm>=0.1.10', |
43 | 43 | 'markupsafe<2.1.0', |
44 | | - 'Jinja2>=2,<3', |
| 44 | + 'Jinja2>=2,<3.1', |
| 45 | + |
| 46 | + # fails on Sphinx < v3.4 |
| 47 | + 'alabaster<=0.7.12', |
| 48 | + # fails on Sphins < v5.0 |
| 49 | + 'sphinxcontrib-applehelp<1.0.8', |
| 50 | + 'sphinxcontrib-devhelp<1.0.6', |
| 51 | + 'sphinxcontrib-htmlhelp<2.0.5', |
| 52 | + 'sphinxcontrib-serializinghtml<1.1.10', |
| 53 | + 'sphinxcontrib-qthelp<1.0.7', |
45 | 54 |
|
46 | 55 | # style check |
47 | 56 | 'flake8>=3.7.7,<4', |
|
62 | 71 | # Advanced testing |
63 | 72 | 'coverage>=4.5.1,<6', |
64 | 73 | 'tox>=2.9.1,<4', |
65 | | - 'importlib-metadata<2,>=0.12', |
| 74 | + 'importlib-metadata<5', |
| 75 | + 'mistune<2', |
66 | 76 | 'invoke', |
67 | 77 | ] |
68 | 78 |
|
|
75 | 85 | 'License :: OSI Approved :: MIT License', |
76 | 86 | 'Natural Language :: English', |
77 | 87 | 'Programming Language :: Python :: 3', |
78 | | - 'Programming Language :: Python :: 3.8', |
79 | 88 | 'Programming Language :: Python :: 3.9', |
80 | 89 | 'Programming Language :: Python :: 3.10', |
81 | 90 | 'Programming Language :: Python :: 3.11', |
| 91 | + 'Programming Language :: Python :: 3.12', |
82 | 92 | ], |
83 | | - description='Signal Processing Tools for Machine Mearning', |
| 93 | + description='Signal Processing Tools for Machine Learning', |
84 | 94 | entry_points={ |
85 | 95 | 'mlblocks': [ |
86 | 96 | 'primitives=sigpro:MLBLOCKS_PRIMITIVES', |
|
98 | 108 | long_description_content_type='text/markdown', |
99 | 109 | name='sigpro', |
100 | 110 | packages=find_packages(include=['sigpro', 'sigpro.*']), |
101 | | - python_requires='>=3.8,<3.12', |
| 111 | + python_requires='>=3.9,<3.13', |
102 | 112 | setup_requires=setup_requires, |
103 | 113 | test_suite='tests', |
104 | 114 | tests_require=tests_require, |
105 | 115 | url='https://github.com/sintel-dev/SigPro', |
106 | | - version='0.2.1', |
| 116 | + version='0.3.0.dev0', |
107 | 117 | zip_safe=False, |
108 | 118 | ) |
0 commit comments