Skip to content

Commit

Permalink
Officially support Python 3.10 and 3.11
Browse files Browse the repository at this point in the history
Also don't pass deprecated arguments to `setup()` .
  • Loading branch information
nsoranzo committed Nov 14, 2022
1 parent d6b7151 commit 2cd88e1
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

_version_re = re.compile(r"__version__\s+=\s+(.*)")


with open("%s/__init__.py" % SOURCE_DIR, "rb") as f:
init_contents = f.read().decode("utf-8")

Expand All @@ -40,7 +39,6 @@ def get_var(var_name):
PROJECT_AUTHOR = get_var("PROJECT_AUTHOR")
PROJECT_EMAIL = get_var("PROJECT_EMAIL")

TEST_DIR = "tests"
PROJECT_DESCRIPTION = (
"Command-line utilities to assist in building tools for the Galaxy project (http://galaxyproject.org/)."
)
Expand Down Expand Up @@ -90,11 +88,6 @@ def get_var(var_name):
# In tox, it will cover them anyway.
requirements = []

test_requirements = [
# TODO: put package test requirements here
]


setup(
name=PROJECT_NAME,
version=version,
Expand Down Expand Up @@ -127,7 +120,7 @@ def get_var(var_name):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite=TEST_DIR,
tests_require=test_requirements,
)

0 comments on commit 2cd88e1

Please sign in to comment.