diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4a82287..8c2c5f7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -70,7 +70,7 @@ jobs: needs: [details, check_pypi] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 @@ -94,7 +94,7 @@ jobs: poetry build - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist/ @@ -109,7 +109,7 @@ jobs: id-token: write steps: - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist/ @@ -125,12 +125,12 @@ jobs: contents: write steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist/ diff --git a/pyproject.toml b/pyproject.toml index 3f9fcfd..96e1754 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] license = "GPL-3.0-only" readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.9,<3.14" dependencies = [ "meshtastic (>=2.6.0,<3.0.0)" ]