Skip to content

Commit 65e634c

Browse files
committed
update setup.py and changelog
1 parent 729d718 commit 65e634c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Change Log
1212
- [BREAKING] This is the same for the "kerasutils" module. Now you need to do `from leap_net.tf_keras.kerasutils import XXX`
1313
instead of `from leap_net.kerasutils import XXX`. This module has not been ported to keras >= 3.0 yet but will be in the short
1414
term.
15+
- [BREAKING] drop support of python 3.6 and 3.7
1516

1617
[0.0.5] - 2022-06-28
1718
----------------------

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
long_description_content_type="text/markdown",
3838
classifiers=[
3939
'Development Status :: 4 - Beta',
40-
'Programming Language :: Python :: 3.6',
41-
'Programming Language :: Python :: 3.7',
4240
'Programming Language :: Python :: 3.8',
4341
'Programming Language :: Python :: 3.9',
4442
'Programming Language :: Python :: 3.10',
43+
'Programming Language :: Python :: 3.11',
44+
'Programming Language :: Python :: 3.12',
4545
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
4646
"Intended Audience :: Developers",
4747
"Intended Audience :: Education",
@@ -52,7 +52,7 @@
5252
author='Benjamin DONNOT',
5353
author_email='benjamin.donnot@rte-france.com',
5454
url="https://github.com/bdonnot/leap_net",
55-
python_requires='>=3.7',
55+
python_requires='>=3.8',
5656
license='Mozilla Public License 2.0 (MPL 2.0)',
5757
packages=setuptools.find_packages(),
5858
include_package_data=True,

0 commit comments

Comments
 (0)