Skip to content

Commit

Permalink
Release 6.5.0
Browse files Browse the repository at this point in the history
This adds a a PyPI classifier and tests for Python 3.10.
  • Loading branch information
borntyping committed Oct 7, 2021
1 parent feb4652 commit fa5514d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.9"]
python-version:
- "3.10"
steps:
- uses: "actions/checkout@master"
- name: "🐍 Set up Python ${{ matrix.python-version }}"
Expand All @@ -28,8 +29,15 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
dependencies: ["", "colorama"]
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
dependencies:
- ""
- "colorama"
steps:
- uses: "actions/checkout@master"
- name: "🐍 Set up Python ${{ matrix.python-version }}"
Expand All @@ -47,7 +55,8 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8"]
python-version:
- "3.8"
steps:
- uses: "actions/checkout@master"
- name: "🐍 Set up Python ${{ matrix.python-version }}"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="colorlog",
version="6.4.1",
version="6.5.0",
description="Add colours to the output of Python's logging module.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -30,6 +30,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Terminals",
"Topic :: Utilities",
],
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[tox]
envlist = py36,py37,py38,py39,py310

[testenv]
deps = pytest
commands = pytest -v

0 comments on commit fa5514d

Please sign in to comment.