Skip to content

Commit d92eaf8

Browse files
authored
Drop python 3.8 (#14)
Python 3.8 was included for Colab, and that's how we were testing it. 3.8 is in end-of-life-secutrity-patches-only mode. Colab has moved to 3.10.
1 parent a4087cd commit d92eaf8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,15 @@
7777
"License :: OSI Approved :: Apache Software License",
7878
"Programming Language :: Python",
7979
"Programming Language :: Python :: 3",
80-
"Programming Language :: Python :: 3.8", # Colab
8180
"Programming Language :: Python :: 3.9",
82-
"Programming Language :: Python :: 3.10",
81+
"Programming Language :: Python :: 3.10", # Colab
8382
"Programming Language :: Python :: 3.11",
8483
"Operating System :: OS Independent",
8584
"Topic :: Scientific/Engineering :: Artificial Intelligence",
8685
],
8786
platforms="Posix; MacOS X; Windows",
8887
packages=packages,
89-
python_requires=">=3.8",
88+
python_requires=">=3.9",
9089
namespace_packages=namespaces,
9190
install_requires=dependencies,
9291
extras_require=extras_require,

0 commit comments

Comments
 (0)