|
15 | 15 | "numpy>=1.20.0,<2;python_version<'3.10'", |
16 | 16 | "numpy>=1.23.3,<2;python_version>='3.10'", |
17 | 17 | "pandas>=1.1.3;python_version<'3.10'", |
18 | | - "pandas>=1.3.4;python_version>='3.10'", |
| 18 | + "pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'", |
| 19 | + "pandas>=1.5.0;python_version>='3.11'", |
19 | 20 | "torch>=1.8.0;python_version<'3.10'", |
20 | | - "torch>=1.11.0;python_version>='3.10'", |
| 21 | + "torch>=1.11.0;python_version>='3.10' and python_version<'3.11'", |
| 22 | + "torch>=2.0.0;python_version>='3.11'", |
21 | 23 | 'tqdm>=4.15,<5', |
22 | 24 | ] |
23 | 25 |
|
|
86 | 88 | 'License :: Free for non-commercial use', |
87 | 89 | 'Natural Language :: English', |
88 | 90 | 'Programming Language :: Python :: 3', |
89 | | - 'Programming Language :: Python :: 3.7', |
90 | 91 | 'Programming Language :: Python :: 3.8', |
91 | 92 | 'Programming Language :: Python :: 3.9', |
92 | 93 | 'Programming Language :: Python :: 3.10', |
| 94 | + 'Programming Language :: Python :: 3.11', |
93 | 95 | 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
94 | 96 | ], |
95 | 97 | description='Create sequential synthetic data of mixed types using a GAN.', |
|
105 | 107 | long_description_content_type='text/markdown', |
106 | 108 | name='deepecho', |
107 | 109 | packages=find_packages(include=['deepecho', 'deepecho.*']), |
108 | | - python_requires='>=3.7,<3.11', |
| 110 | + python_requires='>=3.8,<3.12', |
109 | 111 | setup_requires=setup_requires, |
110 | 112 | test_suite='tests', |
111 | 113 | tests_require=tests_require, |
112 | 114 | url='https://github.com/sdv-dev/DeepEcho', |
113 | | - version='0.4.1', |
| 115 | + version='0.4.2.dev1', |
114 | 116 | zip_safe=False, |
115 | 117 | ) |
0 commit comments