Skip to content

Commit 41f51fb

Browse files
fix call to nox in gha_matrix session (#137)
1 parent 04d8f10 commit 41f51fb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717

1818
## [Unreleased]
1919

20+
### Fixed
21+
22+
- Dropped the `python -m` prefix in `gha_matrix` nox session.
23+
2024
## [2024.29]
2125

2226
### Removed

src/django_twc_package/noxfile.py.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def types(session):
135135

136136
@nox.session
137137
def gha_matrix(session):
138-
sessions = session.run("python", "-m", "nox", "-l", "--json", silent=True)
138+
sessions = session.run("nox", "-l", "--json", silent=True)
139139
matrix = {
140140
"include": [
141141
{

0 commit comments

Comments
 (0)