Skip to content

Commit

Permalink
Merge branch 'main' into add-3.12.x
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Oct 5, 2023
2 parents e5803da + 3ff83ce commit b2fdff3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ jobs:
strategy:
matrix:
PYTHON:
- {VERSION: "3.11", TOXENV: "docs", COVERAGE: "false"}
- {VERSION: "3.11", TOXENV: "meta", COVERAGE: "false"}
- {VERSION: "3.11", TOXENV: "mypy", COVERAGE: "false"}
- {VERSION: "pypy-3.7", TOXENV: "pypy"}
- {VERSION: "3.12", TOXENV: "docs", COVERAGE: "false"}
- {VERSION: "3.12", TOXENV: "meta", COVERAGE: "false"}
- {VERSION: "3.12", TOXENV: "mypy", COVERAGE: "false"}
- {VERSION: "pypy-3.9", TOXENV: "pypy3"}
- {VERSION: "pypy-3.10", TOXENV: "pypy3"}
- {VERSION: "3.6", TOXENV: "py36"}
- {VERSION: "3.7", TOXENV: "py37"}
- {VERSION: "3.8", TOXENV: "py38"}
- {VERSION: "3.9", TOXENV: "py39"}
- {VERSION: "3.10", TOXENV: "py310"}
- {VERSION: "3.11", TOXENV: "py311"}
- {VERSION: "3.12", TOXENV: "py312"}
- {VERSION: "3.11", TOXENV: "py311", NOTE: "system", SODIUM_INSTALL: "system"}
- {VERSION: "3.11", TOXENV: "py311", NOTE: "minimal", SODIUM_INSTALL_MINIMAL: "1"}
- {VERSION: "3.12", TOXENV: "py312", NOTE: "system", SODIUM_INSTALL: "system"}
- {VERSION: "3.12", TOXENV: "py312", NOTE: "minimal", SODIUM_INSTALL_MINIMAL: "1"}
name: "Linux ${{ matrix.PYTHON.TOXENV }} ${{ matrix.PYTHON.NOTE }}"
steps:
- uses: actions/checkout@v3.6.0
Expand Down Expand Up @@ -69,8 +70,8 @@ jobs:
matrix:
PYTHON:
- {VERSION: "3.6", TOXENV: "py36"}
- {VERSION: "3.11", TOXENV: "py311"}
- {VERSION: "3.11", TOXENV: "py311", NOTE: " (minimal build)", SODIUM_INSTALL_MINIMAL: "1"}
- {VERSION: "3.12", TOXENV: "py312"}
- {VERSION: "3.12", TOXENV: "py312", NOTE: " (minimal build)", SODIUM_INSTALL_MINIMAL: "1"}
name: "Python ${{ matrix.PYTHON.VERSION }}${{ matrix.PYTHON.NOTE }} on macOS"
steps:
- uses: actions/checkout@v3.6.0
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ on:
push:
tags:
- '*.*.*'
pull_request:
paths:
- .github/workflows/wheel-builder.yml
- pyproject.toml
- setup.cfg
- setup.py

jobs:
manylinux:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{py,36,37,38,39,310,311,312},docs,meta,mypy
envlist = py{py3,36,37,38,39,310,311,312},docs,meta,mypy
isolated_build = True

[testenv]
Expand Down

0 comments on commit b2fdff3

Please sign in to comment.