Skip to content

Commit

Permalink
setup.py: Add Python 3.11 to the PyPI classifier metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Nov 3, 2022
1 parent fc50ac1 commit f18bff4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
Changes
=========

2.0.1 (unreleased)
==================
2.0.0.post0 (unreleased)
========================

- Nothing changed yet.
- Add ``Programming Language :: Python :: 3.11`` to the PyPI
classifier metadata.


2.0.0 (2022-10-31)
Expand Down
2 changes: 1 addition & 1 deletion make-manylinux
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -d /greenlet -a -d /opt/python ]; then
mkdir -p /greenlet/wheelhouse
OPATH="$PATH"
which auditwheel
for variant in `ls -d /opt/python/cp{27,35,36,37,38,39,310}*`; do
for variant in `ls -d /opt/python/cp{27,35,36,37,38,39,310,311}*`; do
export PATH="$variant/bin:$OPATH"
echo "Building $variant $(python --version)"

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def get_greenlet_version():
author="Alexey Borzenkov",
author_email="snaury@gmail.com",
maintainer='Jason Madden',
maintainer_email='jason@nextthought.com',
maintainer_email='jason@seecoresoftware.com',
project_urls={
'Bug Tracker': 'https://github.com/python-greenlet/greenlet/issues',
'Source Code': 'https://github.com/python-greenlet/greenlet/',
Expand Down Expand Up @@ -213,6 +213,7 @@ def get_greenlet_version():
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit f18bff4

Please sign in to comment.