Skip to content

Commit c1dc532

Browse files
authored
Merge pull request #71 from nicoddemus/release-2.1.0
2 parents 2a2f125 + d045d2c commit c1dc532

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
python: ["3.6", "3.7", "3.8", "3.9"]
58+
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
5959
include:
6060
- python: "3.6"
6161
tox_env: "py36-pytestlatest"
@@ -65,6 +65,8 @@ jobs:
6565
tox_env: "py38-pytestlatest"
6666
- python: "3.9"
6767
tox_env: "py39-pytestlatest py39-pytest53"
68+
- python: "3.10"
69+
tox_env: "py310-pytestlatest"
6870

6971
steps:
7072
- uses: actions/checkout@v1
@@ -95,17 +97,21 @@ jobs:
9597

9698
steps:
9799
- uses: actions/checkout@v1
100+
98101
- name: Set up Python
99102
uses: actions/setup-python@v1
100103
with:
101-
python-version: "3.7"
102-
- name: Install wheel
104+
python-version: "3.9"
105+
106+
- name: Install dependencies
103107
run: |
104108
python -m pip install --upgrade pip
105-
pip install wheel
109+
pip install build
110+
106111
- name: Build package
107112
run: |
108-
python setup.py sdist bdist_wheel
113+
python -m build
114+
109115
- name: Publish package to PyPI
110116
uses: pypa/gh-action-pypi-publish@master
111117
with:

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# 2.1.0
1+
# 2.1.0 (2021-12-03)
22

3-
- Added support for `GTEST_SKIP()` skipped message from Google Test 1.11.
3+
- Added support for `GTEST_SKIP()` skipped message from Google Test `1.11`.
44

5-
# 2.0.0
5+
# 2.0.0 (2021-06-04)
66

77
- `pytest-cpp` now supports [Catch2](https://github.com/catchorg/Catch2). Many thanks to [@salim-runsafe](https://github.com/salim-runsafe) for the contribution.
88

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)