Skip to content

Commit a5175ac

Browse files
authored
test only current versions and prepare release (#234)
1 parent 6ebd264 commit a5175ac

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ workflows:
77
name: test-py<< matrix.python >>-dj<< matrix.django >>
88
matrix:
99
parameters:
10-
python: ["3.12", "3.11", "3.10"]
11-
django: ["4.2", "4.1", "3.2"]
10+
python: ["3.12", "3.11"]
11+
django: ["5.0", "4.2"]
1212
- check
1313

1414
jobs:
@@ -51,7 +51,7 @@ jobs:
5151
condition:
5252
and:
5353
- equal: [<< parameters.python >>, "3.12"]
54-
- equal: [<< parameters.django >>, "4.2"]
54+
- equal: [<< parameters.django >>, "5.0"]
5555
steps:
5656
- run:
5757
name: Check coverage with Python << parameters.python >>

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for Rest-Framework-Auth-Toolkit
22

3+
## v0.14
4+
5+
Tested with Python 3.11 and 3.12,
6+
and Django 4.2 and 5.0.
7+
8+
39
## v0.13
410

511
Tested with Python 3.10, 3.11 and 3.12,

pyproject.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,22 @@ dynamic = ["version", "description"]
77
name = "Rest_Framework_Auth_Toolkit"
88
authors = [ { name = "Caravan Coop", email = "[email protected]" } ]
99
readme = "README.md"
10-
requires-python = ">= 3.10"
10+
requires-python = ">= 3.11"
1111
classifiers = [
1212
"Development Status :: 4 - Beta",
1313
"Intended Audience :: Developers",
1414
"Environment :: Web Environment",
1515
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
2120
"Framework :: Django",
22-
"Framework :: Django :: 3.2",
23-
"Framework :: Django :: 4.1",
2421
"Framework :: Django :: 4.2",
22+
"Framework :: Django :: 5.0",
2523
]
2624
dependencies = [
27-
"django >= 3.2",
25+
"django >= 4.2",
2826
]
2927

3028
[project.optional-dependencies]

tox.ini

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{312,311,310}-dj{4.2,4.1,3.2}
2+
envlist = py{312,311}-dj{5.0,4.2}
33
minversion = 3.4.0
44
isolated_build = True
55

@@ -10,9 +10,8 @@ deps =
1010
-r requirements-test.txt
1111
-r demo/requirements.txt
1212
commands =
13-
py{312,311,310}-dj3.2: pip install django==3.2.*
14-
py{312,311,310}-dj4.1: pip install django==4.1.*
15-
py{312,311,310}-dj4.2: pip install django==4.2.*
13+
py{312,311}-dj4.2: pip install django==4.2.*
14+
py{312,311}-dj5.0: pip install django==5.0.*
1615
flake8 rest_auth_toolkit tests demo
1716
pytest {posargs}
1817

0 commit comments

Comments
 (0)