Skip to content

Commit 65c1bed

Browse files
authored
Added support for python 3.10, 3.11 and 3.12. (#315)
1 parent f7391b7 commit 65c1bed

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed

.github/workflows/base.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,17 @@ jobs:
6868
allow-build: info
6969
cache-build: true
7070

71-
- name: Install python 3.9 for nox
71+
- name: Install python 3.12 for nox
7272
uses: actions/setup-python@v4
7373
with:
74-
python-version: 3.9
74+
python-version: 3.12
7575
architecture: x64
7676

77+
- name: pin virtualenv==20.15.1 in old python versions
78+
# pinned to keep compatibility with old versions, see https://github.com/MatteoH2O1999/setup-python/issues/28#issuecomment-1745613621
79+
if: contains(fromJson('["2.7", "3.5", "3.6"]'), matrix.nox_session.python )
80+
run: sed -i "s/virtualenv/virtualenv==20.15.1/g" noxfile-requirements.txt
81+
7782
- name: Install noxfile requirements
7883
run: pip install -r noxfile-requirements.txt
7984

docs/changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
### 3.7.0 - python 3.12
4+
5+
- Added official support for Python 3.10, 3.11 and 3.12. Fixes [#314](https://github.com/smarie/python-pytest-cases/issues/314)
6+
- Fixed `ModuleNotFoundError: distutils` on Python 3.12 thanks to `packaging`. PR
7+
[#312](https://github.com/smarie/python-pytest-cases/pull/312) by [@jayqi](https://github.com/jayqi).
8+
- Internal: switched to virtualenv backend.
9+
310
### 3.6.14 - bugfixes
411

512
- Fixed `AttributeError` issue in `is_case_function` when an inspected symbol is a parametrized type hint

noxfile-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
virtualenv==20.15.1 # pinned to keep compatibility with old versions, see https://github.com/MatteoH2O1999/setup-python/issues/28#issuecomment-1745613621
1+
virtualenv
22
nox
33
toml
44
makefun

noxfile.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# add parent folder to python path so that we can import noxfile_utils.py
1111
# note that you need to "pip install -r noxfile-requiterements.txt" for this file to work.
1212
sys.path.append(str(Path(__file__).parent / "ci_tools"))
13-
from nox_utils import PY27, PY37, PY36, PY35, PY38, PY39, PY310, power_session, rm_folder, rm_file, PowerSession, DONT_INSTALL # noqa
13+
from nox_utils import PY27, PY37, PY36, PY35, PY38, PY39, PY310, PY311, PY312, power_session, rm_folder, rm_file, PowerSession, DONT_INSTALL # noqa
1414

1515

1616
pkg_name = "pytest_cases"
@@ -19,8 +19,9 @@
1919

2020

2121
ENVS = {
22-
# python 3.10 is not available on conda yet
23-
# (PY310, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
22+
(PY312, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
23+
(PY311, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
24+
(PY310, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
2425
# python 3.9 - put first to detect easy issues faster.
2526
(PY39, "pytest-latest"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": ""}},
2627
(PY39, "pytest6.x"): {"coverage": False, "pkg_specs": {"pip": ">19", "pytest": "<7"}},

pyproject.toml

-11
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,3 @@ build-backend = "setuptools.build_meta"
88

99
# pip: no ! does not work in old python 2.7 and not recommended here
1010
# https://setuptools.readthedocs.io/en/latest/userguide/quickstart.html#basic-use
11-
12-
[tool.conda]
13-
# Declare that the following packages should be installed with conda instead of pip
14-
# Note: this includes packages declared everywhere, here and in setup.cfg
15-
conda_packages = [
16-
"setuptools",
17-
"wheel",
18-
"pip",
19-
# "pytest",
20-
]
21-
# pytest: not with conda ! does not work in old python 2.7 and 3.5

0 commit comments

Comments
 (0)