Skip to content

Commit 161113c

Browse files
authored
Fix pypy run (#81)
1 parent 53241d0 commit 161113c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
pyv: ['3.8', '3.9', '3.10']
2626
include:
2727
- os: ubuntu-latest
28-
pyv: 'pypy-3.8'
28+
pyv: 'pypy3.8'
2929

3030
steps:
3131
- name: Check out the repository

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
locations = "src", "tests"
1010

1111

12-
@nox.session(python=["3.8", "3.9", "3.10", "pypy-3.8", "pypy-3.9"])
12+
@nox.session(python=["3.8", "3.9", "3.10", "pypy3.8", "pypy3.9"])
1313
def tests(session: nox.Session) -> None:
1414
session.install(".[tests]")
1515
session.run(

0 commit comments

Comments
 (0)