Skip to content

Commit

Permalink
Update metadata for 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Aug 25, 2022
1 parent 31ccde2 commit 69ee8fa
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-rc.1]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11.0-rc.1"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changes
=========

1.1.3 (unreleased)
==================

- Add support for Python 3.11. Please note that Windows binary wheels
are not available at this time.

1.1.2 (2021-09-29)
==================

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ environment:
matrix:
# http://www.appveyor.com/docs/installed-software#python
- PYTHON: "C:\\Python310-x64"
PYTHON_VERSION: "3.10.0rc2"
PYTHON_VERSION: "3.10.4"
PYTHON_ARCH: "64"
PYTHON_EXE: python
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion make-manylinux
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,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
2 changes: 1 addition & 1 deletion src/greenlet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
###
# Metadata
###
__version__ = '1.1.2'
__version__ = '1.1.3.dev0'
from ._greenlet import _C_API # pylint:disable=no-name-in-module

###
Expand Down

0 comments on commit 69ee8fa

Please sign in to comment.