diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-11-17 14:42:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-17 14:42:49 +0100 |
| commit | 5cfacac6c67f2130ae56eb2a0ef16b2a3c7c843d (patch) | |
| tree | 6ab5cae13002d0d9b7c4e07945827273dc3564f0 /.github/workflows/pythonpackage.yml | |
| parent | 334ef84a05c953ed5dbec7b9c6d4310879eeab5a (diff) | |
| parent | 0370014ee74a0f4480127932a78f177f6f433b9e (diff) | |
| download | smmap-master.tar.gz | |
Add support for Python 3.11
Diffstat (limited to '.github/workflows/pythonpackage.yml')
| -rw-r--r-- | .github/workflows/pythonpackage.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index e6e68ff..9e2d881 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 1000 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies |
