Skip to content

Commit

Permalink
Fixes #308: pin dev dependencies and drop Python 3.7 (#311)
Browse files Browse the repository at this point in the history
* Pin dev dependencies

* Remove obsolete ignored versions

* Drop Python 3.7
  • Loading branch information
leplatrem committed Apr 11, 2023
1 parent df04d0f commit 77fc5ab
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 27 deletions.
7 changes: 0 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,3 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 99
ignore:
- dependency-name: idna
versions:
- "3.1"
- dependency-name: urllib3
versions:
- 1.26.3
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toxenv: [py37, py38, py39, py39-master]
toxenv: [py38, py39, py310, py311, py311-master]
include:
- toxenv: py37
python-version: "3.7"
- toxenv: py38
python-version: "3.8"
- toxenv: py39
python-version: "3.9"
- toxenv: py39-master
python-version: "3.9"
- toxenv: py310
python-version: "3.10"
- toxenv: py311
python-version: "3.11"
- toxenv: py311-master
python-version: "3.11"

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ This document describes changes between each past release.
11.0.2 (unreleased)
===================

- Nothing changed yet.
**Internal Changes**

- Drop support of Python 3.7
- Update list of Python versions to run CI tests


11.0.1 (2023-04-05)
Expand Down
24 changes: 12 additions & 12 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
black
flake8
isort
kinto
pytest
pytest-asyncio
pytest-cache
pytest-cov
pytest-mock
pytest-xdist
therapist
unidecode
black==23.3.0
flake8==6.0.0
isort==5.12.0
kinto==15.1.1
pytest==7.3.0
pytest-asyncio==0.21.0
pytest-cache==1.0
pytest-cov==4.0.0
pytest-mock==3.10.0
pytest-xdist==3.2.1
therapist==2.2.0
Unidecode==1.3.6
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ def read_file(filename):
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: Apache Software License",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py39-master
envlist = py38,py39,py310,py311,py311-master

[testenv]
commands =
Expand Down

0 comments on commit 77fc5ab

Please sign in to comment.