Skip to content

Commit

Permalink
fix py311 test #326, add 3.11 to the local and CI test matrix, and up…
Browse files Browse the repository at this point in the history
…date some references
  • Loading branch information
mahmoud committed Feb 20, 2023
1 parent 4c4f9cf commit 7343626
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Linux, python: '3.10', os: ubuntu-latest, tox: py310}
- {name: Windows, python: '3.10', os: windows-latest, tox: py310}
- {name: Mac, python: '3.10', os: macos-latest, tox: py310}
- {name: Linux, python: '3.11', os: ubuntu-latest, tox: py311}
- {name: Windows, python: '3.11', os: windows-latest, tox: py311}
- {name: Mac, python: '3.11', os: macos-latest, tox: py311}
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def get_mod_stats():

# General information about the project.
project = u'boltons'
copyright = u'2020, Mahmoud Hashemi'
copyright = u'2023, Mahmoud Hashemi'
author = u'Mahmoud Hashemi'

version = '21.0'
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ consider other integration options. See the :ref:`Integration
<arch_integration>` section of the architecture document for more
details.

Boltons is tested against Python 2.6-2.7, 3.4-3.7, and PyPy.
Boltons is tested against Python 3.7-3.11, as well as Python 2.7 and PyPy3.

.. _MacPorts: https://ports.macports.org/port/py-boltons/summary

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


__author__ = 'Mahmoud Hashemi'
__version__ = '21.0.1dev'
__version__ = '23.0.1dev'
__contact__ = '[email protected]'
__url__ = 'https://github.com/mahmoud/boltons'
__license__ = 'BSD'
Expand Down Expand Up @@ -42,15 +42,13 @@
# List of python versions and their support status:
# https://en.wikipedia.org/wiki/CPython#Version_history
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', ]
)
Expand Down
1 change: 1 addition & 0 deletions tests/test_dictutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@ def test_frozendict_api():
'__format__',
'__ge__',
'__getattribute__',
'__getstate__',
'__getitem__',
'__getstate__',
'__gt__',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37,py39,py310,pypy3
envlist = py27,py37,py39,py310,py311,pypy3
[testenv]
changedir = .tox
deps = -rrequirements-test.txt
Expand Down

0 comments on commit 7343626

Please sign in to comment.