Skip to content

Commit 8874a57

Browse files
authored
use alternate pypy names and pyproject config (#751)
1 parent 7773771 commit 8874a57

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest]
23-
python-version: ['pypy-2.7', 'pypy-3.8']
23+
python-version: ['pypy2.7', 'pypy3.8']
2424
# os: [ubuntu-latest, windows-latest, macos-latest]
2525
# python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', 'pypy-2.7', 'pypy-3.8']
2626

2727
env:
2828
TOXENV: ${{ matrix.python-version }}
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232

3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v2
34+
uses: actions/setup-python@v4
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "datadog"
77
description = "The Datadog Python library"
88
readme = "README.md"
9-
license = "BSD-3-Clause"
9+
license = {text = "BSD-3-Clause"}
1010
requires-python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
1111
keywords = [
1212
"datadog",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
minversion = 3.7.0
33
skip_missing_interpreters = true
44
envlist =
5-
py{27,37,38,py-2.7,py-3.8}
5+
py{27,37,38,py2.7,py3.8}
66
flake8
77
integration
88
mypy

0 commit comments

Comments
 (0)