Skip to content

Commit

Permalink
version check and pypi metadata update
Browse files Browse the repository at this point in the history
 * remove old note about python2 usage
 * fix name of repo in error message
  • Loading branch information
JunAishima committed Oct 8, 2024
1 parent e90b91c commit a5ed5aa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@
import os
import sys

# NOTE: This file must remain Python 2 compatible for the foreseeable future,
# to ensure that we error out properly for people with outdated setuptools
# and/or pip.
min_version = (3, 6)
min_version = (3, 8)
if sys.version_info < min_version:
error = """
mxtools does not support Python {0}.{1}.
analysisstore does not support Python {0}.{1}.
Python {2}.{3} and above is required. Check your Python version like so:
python3 --version
Expand Down Expand Up @@ -61,5 +58,10 @@ def read(fname):
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)

0 comments on commit a5ed5aa

Please sign in to comment.