Skip to content

Commit

Permalink
Release 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed Oct 19, 2022
1 parent c3315c8 commit 64b19a5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 17 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.10']
python: ['3.11']
os: ['ubuntu-latest']

steps:
Expand All @@ -34,13 +34,9 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
python: ['3.9', '3.8', '3.7', 'pypy-3.7']
python: ['3.10', '3.9', '3.8', '3.7', 'pypy-3.7']
os: ['ubuntu-latest']
experimental: [false]
include:
- python: '3.11.0-alpha - 3.11.0'
experimental: true
os: 'ubuntu-latest'
fail-fast: false

steps:
Expand All @@ -61,7 +57,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.10']
python: ['3.11']
os: ['windows-latest', 'macos-latest']

steps:
Expand All @@ -82,7 +78,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ['3.10']
python: ['3.11']
os: ['ubuntu-latest']

steps:
Expand All @@ -102,7 +98,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: [ '3.10' ]
python: [ '3.11' ]
os: [ 'ubuntu-latest' ]

steps:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default: help

.PHONY: test
test: ## Run tests
tox -e py37,py310
tox -e py37,py311

.PHONY: coverage
coverage: ## Test coverage report
Expand Down Expand Up @@ -41,7 +41,7 @@ check-format:
tox -e check-format

.PHONY: refurb
check-format:
refurb:
tox -e refurb

.PHONY: format
Expand Down Expand Up @@ -81,11 +81,11 @@ clean: ## Clean generated files

.PHONY: repl
repl: ## Python REPL
tox -e py310 -- python
tox -e py311 -- python

.PHONY: outdated
outdated: ## List outdated dependancies
tox -e py310 -- pip list -o
tox -e py311 -- pip list -o

.PHONY: help
help: ## Show this help
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
setup(
name="brunns-matchers",
zip_safe=False,
version="2.5.1",
version="2.6.0",
description="Custom PyHamcrest matchers",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -43,6 +43,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 :: PyPy",
"Topic :: Software Development :: Testing",
],
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,pypy3.7
envlist = py37,py38,py39,py310,py311,pypy3.7

[testenv]
whitelist_externals =
Expand All @@ -13,15 +13,15 @@ commands =
{posargs:py.test}

[testenv:coverage]
envlist = py310
envlist = py311
deps =
{[testenv]deps}
pytest-cov
commands =
pytest --cov {envsitepackagesdir}/brunns/matchers --durations=10 --cov-report term-missing --cov-fail-under 100 --basetemp={envtmpdir} {posargs}

[testenv:publish-coverage]
envlist = py310
envlist = py311
passenv = TRAVIS TRAVIS_* CODACY_*
deps =
{[testenv:coverage]deps}
Expand Down

0 comments on commit 64b19a5

Please sign in to comment.