Skip to content

Commit

Permalink
test python 3.10 & 3.11 (#48)
Browse files Browse the repository at this point in the history
* test python 3.10 & 3.11

* py35 and py36 are dead to me

* add classifiers

* all parallel
  • Loading branch information
rsokl authored Feb 18, 2023
1 parent 6161d29 commit 173650f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tox_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ jobs:
runs-on: ubuntu-latest

strategy:
max-parallel: 3
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [2.7, 3.7, 3.8, 3.9, "3.10", 3.11]
fail-fast: false

steps:
Expand Down
26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,24 @@
[![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)
[![PyPi version](https://img.shields.io/pypi/v/custom_inherit.svg)](https://pypi.python.org/pypi/custom_inherit)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/custom-inherit.svg)](https://anaconda.org/conda-forge/custom-inherit)
[![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)
[![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)

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

## Overview
The Python package `custom_inherit` provides convenient, light-weight tools for inheriting docstrings in customizeable ways.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tag_prefix = v


[tox:tox]
envlist = py27,py35,py36,py37,py38,py39
envlist = py27,py37,py38,py39,py310,py311

[testenv]
deps = pytest
Expand Down
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,15 @@
url="https://github.com/rsokl/custom_inherit",
download_url="https://github.com/rsokl/custom_inherit/tarball/" + versioneer.get_version(),
license="MIT",
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"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",
]
)

0 comments on commit 173650f

Please sign in to comment.