Skip to content

Commit 173650f

Browse files
authored
test python 3.10 & 3.11 (#48)
* test python 3.10 & 3.11 * py35 and py36 are dead to me * add classifiers * all parallel
1 parent 6161d29 commit 173650f

File tree

4 files changed

+29
-13
lines changed

4 files changed

+29
-13
lines changed

.github/workflows/tox_run.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
strategy:
20-
max-parallel: 3
2120
matrix:
22-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
21+
python-version: [2.7, 3.7, 3.8, 3.9, "3.10", 3.11]
2322
fail-fast: false
2423

2524
steps:

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,24 @@
33
[![Automated tests status](https://github.com/rsokl/custom_inherit/workflows/Tests/badge.svg)](https://github.com/rsokl/custom_inherit/actions?query=workflow%3ATests+branch%3Amaster)
44
[![PyPi version](https://img.shields.io/pypi/v/custom_inherit.svg)](https://pypi.python.org/pypi/custom_inherit)
55
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/custom-inherit.svg)](https://anaconda.org/conda-forge/custom-inherit)
6-
[![Python version support](https://img.shields.io/badge/python-2.7,%20%20%203.4%20%20%20--%203.9-blue.svg)](https://img.shields.io/pypi/v/custom_inherit.svg)
6+
[![Python version support](https://img.shields.io/badge/python-2.7,%20%20%203.4%20%20%20--%203.11-blue.svg)](https://img.shields.io/pypi/v/custom_inherit.svg)
77

88
## Contents
9-
- [Overview](#overview)
10-
- [Basic Usage](#basic-usage)
11-
- [Inheriting Docstrings Using a Metaclass](#inheriting-docstrings-using-a-metaclass)
12-
- [Inheriting Docstrings Using a Decorator](#inheriting-docstrings-using-a-decorator)
13-
- [Advanced Usage (ABCMeta)](#advanced-usage)
14-
- [Built-in Styles](#built-in-styles)
15-
- [Making New Inheritance Styles](#making-new-inheritance-styles)
16-
- [Installation & Getting Started](#installation-and-getting-started)
17-
- [Documentation](#documentation)
9+
- [custom\_inherit](#custom_inherit)
10+
- [Contents](#contents)
11+
- [Overview](#overview)
12+
- [Features](#features)
13+
- [Implementation Notes](#implementation-notes)
14+
- [Projects That Use `custom_inherit`](#projects-that-use-custom_inherit)
15+
- [Basic Usage](#basic-usage)
16+
- [Inheriting Docstrings Using a Metaclass](#inheriting-docstrings-using-a-metaclass)
17+
- [Inheriting Docstrings Using a Decorator](#inheriting-docstrings-using-a-decorator)
18+
- [Advanced Usage](#advanced-usage)
19+
- [Built-in Styles](#built-in-styles)
20+
- [Making New Inheritance Styles](#making-new-inheritance-styles)
21+
- [Installation and Getting Started](#installation-and-getting-started)
22+
- [Documentation](#documentation)
23+
- [Go Back To:](#go-back-to)
1824

1925
## Overview
2026
The Python package `custom_inherit` provides convenient, light-weight tools for inheriting docstrings in customizeable ways.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tag_prefix = v
77

88

99
[tox:tox]
10-
envlist = py27,py35,py36,py37,py38,py39
10+
envlist = py27,py37,py38,py39,py310,py311
1111

1212
[testenv]
1313
deps = pytest

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,15 @@
1616
url="https://github.com/rsokl/custom_inherit",
1717
download_url="https://github.com/rsokl/custom_inherit/tarball/" + versioneer.get_version(),
1818
license="MIT",
19+
classifiers = [
20+
"Development Status :: 4 - Beta",
21+
"License :: OSI Approved :: MIT License",
22+
"Operating System :: OS Independent",
23+
"Programming Language :: Python :: 2.7",
24+
"Programming Language :: Python :: 3.7",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
27+
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
29+
]
1930
)

0 commit comments

Comments
 (0)