|
12 | 12 | history = history_file.read() |
13 | 13 |
|
14 | 14 | install_requires = [ |
15 | | - "numpy>=1.18.0,<1.20.0;python_version<'3.7'", |
16 | | - "numpy>=1.20.0,<2;python_version>='3.7'", |
17 | | - 'pandas>=1.1.3,<2', |
18 | | - 'torch>=1.8.0,<2', |
| 15 | + "numpy>=1.20.0,<2;python_version<'3.10'", |
| 16 | + "numpy>=1.23.3,<2;python_version>='3.10'", |
| 17 | + "pandas>=1.1.3,<2;python_version<'3.10'", |
| 18 | + "pandas>=1.3.4,<2;python_version>='3.10'", |
| 19 | + "torch>=1.8.0,<2;python_version<'3.10'", |
| 20 | + "torch>=1.11.0,<2;python_version>='3.10'", |
19 | 21 | 'tqdm>=4.15,<5', |
20 | 22 | ] |
21 | 23 |
|
|
84 | 86 | 'License :: Free for non-commercial use', |
85 | 87 | 'Natural Language :: English', |
86 | 88 | 'Programming Language :: Python :: 3', |
87 | | - 'Programming Language :: Python :: 3.6', |
88 | 89 | 'Programming Language :: Python :: 3.7', |
89 | 90 | 'Programming Language :: Python :: 3.8', |
90 | 91 | 'Programming Language :: Python :: 3.9', |
| 92 | + 'Programming Language :: Python :: 3.10', |
91 | 93 | 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
92 | 94 | ], |
93 | 95 | description='Create sequential synthetic data of mixed types using a GAN.', |
|
103 | 105 | long_description_content_type='text/markdown', |
104 | 106 | name='deepecho', |
105 | 107 | packages=find_packages(include=['deepecho', 'deepecho.*']), |
106 | | - python_requires='>=3.6,<3.10', |
| 108 | + python_requires='>=3.7,<3.11', |
107 | 109 | setup_requires=setup_requires, |
108 | 110 | test_suite='tests', |
109 | 111 | tests_require=tests_require, |
|
0 commit comments