diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 38a16ef6..b6df409d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,9 +12,9 @@ jobs: python-version: ["3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -42,13 +42,14 @@ jobs: runs-on: ubuntu-20.04 strategy: + fail-fast: false matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.13"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -75,7 +76,7 @@ jobs: image: python:2.7.18-buster steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: | apt-get update && apt-get install sudo cmake gawk rsync -y diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c6afaf5d..40c8e5b6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,9 +12,9 @@ jobs: matrix: python-version: ["3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -39,7 +39,7 @@ jobs: - name: Build distribution run: | make clean dist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./build/tarballs @@ -52,7 +52,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: @@ -66,8 +66,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Github Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: artifact/* diff --git a/Makefile b/Makefile index 4cb02077..bc08fa63 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ PYTHON39=python3.9 PYTHON310=python3.10 PYTHON311=python3.11 PYTHON312=python3.12 +PYTHON313=python3.13 PYTHON2=/usr/bin/python2 PYTHON3=/usr/bin/python3 PYTHON=${PYTHON3} diff --git a/src/setup.py b/src/setup.py index b89ec757..e5cea9d8 100644 --- a/src/setup.py +++ b/src/setup.py @@ -65,6 +65,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', ], )