Skip to content

Commit 15ab106

Browse files
authored
Merge pull request #236 from pllim/pytest-8.1
MNT: Compat with pytest>=8
2 parents 857ab65 + b78a372 commit 15ab106

File tree

6 files changed

+272
-123
lines changed

6 files changed

+272
-123
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions" # See documentation for possible values
9+
directory: ".github/workflows" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
groups:
13+
actions:
14+
patterns:
15+
- "*"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
19-
- uses: actions/setup-python@v4
19+
- uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.8
2222

.github/workflows/python-tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,15 @@ jobs:
5757
- os: ubuntu-latest
5858
python-version: '3.11'
5959
toxenv: py311-test-pytest74
60-
toxargs: --pre
60+
- os: ubuntu-latest
61+
python-version: '3.12'
62+
toxenv: py312-test-pytest80
63+
- os: macos-latest
64+
python-version: '3.12'
65+
toxenv: py312-test-pytest80
66+
- os: windows-latest
67+
python-version: '3.12'
68+
toxenv: py312-test-pytest80
6169
- os: macos-latest
6270
python-version: '3.11'
6371
toxenv: py311-test-pytestdev
@@ -66,14 +74,14 @@ jobs:
6674
toxenv: py311-test-pytestdev
6775
- os: ubuntu-latest
6876
python-version: '3.12'
69-
toxenv: py312-test-pytestdev
77+
toxenv: py312-test-pytestdev-numpydev
7078

7179
steps:
7280
- uses: actions/checkout@v4
7381
with:
7482
fetch-depth: 0
7583
- name: Set up Python ${{ matrix.python-version }}
76-
uses: actions/setup-python@v4
84+
uses: actions/setup-python@v5
7785
with:
7886
python-version: ${{ matrix.python-version }}
7987
- name: Install Tox

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
1.2.0 (unreleased)
22
==================
33

4+
- Compatibility with pytest 8.1. [#236]
45

56
1.1.0 (2023-12-13)
67
==================

0 commit comments

Comments
 (0)