Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: Install nox
run: |
python -m pip install --upgrade pip
python -m pip install nox
python -m pip install --only-binary :all: --upgrade pip
python -m pip install --only-binary :all: ".[dev]"

- name: Run pre-commit
run: |
Expand Down Expand Up @@ -71,8 +71,8 @@ jobs:
with:
python-version: ${{ matrix.py }}
- run: |
pip install --upgrade pip
pip install .[dev]
pip install --only-binary :all: --upgrade pip
pip install --only-binary :all: .[dev]

- name: Download wheel artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
Expand All @@ -97,8 +97,8 @@ jobs:

- name: Install nox
run: |
python -m pip install --upgrade pip
python -m pip install nox
python -m pip install --only-binary :all: --upgrade pip
python -m pip install --only-binary :all: ".[dev]"

- name: Build docs
run: nox -s docs
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
- name: Build wheel
run: |
# Install dependencies
python -m pip install --upgrade pip twine
python -m pip install --only-binary :all: --upgrade pip
python -m pip install --only-binary :all: ".[ci]"
# Build wheel
python -m pip wheel -w dist .
# Check distribution
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ tracker = "https://github.com/commit-check/commit-check/issues"
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/

[project.optional-dependencies]
dev = ['nox']
dev = ['nox==2026.7.11']
test = ['coverage', 'pytest', 'pytest-mock', 'pytest-codspeed']
docs = ['sphinx<9', 'sphinx-immaterial', 'sphinx-autobuild', 'sphinx_issues', 'myst-parser']
ci = ['twine==6.2.0']

[tool.setuptools]
zip-safe = false
Expand Down