Skip to content

Commit

Permalink
Use system's default Python version as test runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Oct 26, 2023
1 parent 0705b21 commit e1d1a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import nox

_PY_VERSIONS = ('3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3')
_PY_DEFAULT_VERSION = '3.11'
_PY_DEFAULT_VERSION = sys.version[:4]

nox.options.sessions = ['test-{}'.format(_PY_DEFAULT_VERSION), 'test-pypy3']

Expand Down

0 comments on commit e1d1a7a

Please sign in to comment.