Skip to content

Commit

Permalink
Merge pull request #89 from graingert/fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert authored Jul 30, 2024
2 parents 0bd7637 + 6942ccf commit 451d17d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version:
[3.7, 3.8, 3.9, "3.10", 3.11, 3.12-dev, pypy-3.7, pypy-3.8, pypy-3.9]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy-3.8, pypy-3.9]
os: [macOS-latest, ubuntu-latest, windows-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ repos:
rev: v3.4.0
hooks:
- id: pyupgrade
args: ["--py37-plus"]
args: ['--py38-plus']

- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
args: ["--target-version", "py37"]
args: ['--target-version', 'py38']

- repo: https://github.com/pycqa/isort
rev: 5.12.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ and your tests executed by pytest all will have access to the `httpbin` and

## Support and dependencies

pytest-httpbin supports Python 2.6, 2.7, 3.4-3.6, and pypy. It will automatically
pytest-httpbin supports Python 3.8+, and pypy. It will automatically
install httpbin and flask when you install it from PyPI.

[httpbin](https://github.com/postmanlabs/httpbin) itself does not support python 2.6 as
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
]
keywords = ["pytest-httpbin testing pytest httpbin"]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = ["httpbin"]
dynamic = ["version"]

Expand Down Expand Up @@ -72,13 +71,14 @@ legacy_tox_ini = """
requires=
virtualenv>=20.13.2
tox-gh-actions>=2.9.1
envlist = py37, py38, py39, py310, pypy3
envlist = py38, py39, py310, pypy3
[testenv]
package = wheel
wheel_build_env = .pkg
extras = test
commands = pytest -v -s {posargs}
install_command = python -I -m pip install --use-pep517 {opts} {packages}
[testenv:release]
deps =
Expand Down

0 comments on commit 451d17d

Please sign in to comment.