Skip to content

Commit

Permalink
tests: drop testing under python 3.6, test under 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dairiki committed May 5, 2023
1 parent 1954d21 commit 1d6c65c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -11,15 +11,12 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.6'
- 'pypy-3.7'
# XXX: Currently (2021-12-04) fails
#- 'pypy-3.8'
- '3.11'
- 'pypy-3.9'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,12 @@
History
=======

Next Release
------------

This release drops support for python 3.6.


Release 2.0.0a1 (2021-12-07)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -53,7 +53,7 @@ install using pip_::

pip install pyramid-log

It has been tested on python 2.7, 3.4–3.6 and pypy.
It has been tested on python 3.7–3.11 and pypy.

Development happens at https://github.com/dairiki/pyramid_log/.

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Expand Up @@ -19,17 +19,17 @@ classifiers =
Topic :: Internet :: WWW/HTTP
Topic :: System :: Logging
Programming Language :: Python :: 3
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

[options]
packages = pyramid_log
python_requires = >=3.6
python_requires = >=3.7
install_requires =
pyramid
setup_requires =
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
@@ -1,20 +1,20 @@
[tox]
minversion = 3.15.0
minversion = 4
isolated_build = True
envlist =
py{36,37,38,39,310}
py{37,38,39,310,311}
py39-pyramid1
pypy3
clean,cover
lint

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-3: pypy3

[testenv]
Expand All @@ -23,8 +23,8 @@ deps =
coverage[toml]
pyramid1: pyramid==1.*
depends =
py{,36,37,38,39,310,py3}{,-pyramid1}: clean
cover: py{,36,37,38,39,310,py3}{,-pyramid1}
py{,36,37,38,39,310,311,py3}: clean
cover: py{,36,37,38,39,310,311,py3}{,-pyramid1}
commands = coverage run -m pytest

[testenv:clean]
Expand Down

0 comments on commit 1d6c65c

Please sign in to comment.