From 8c9c9a9ddac83990f64d89a02ebc465ea60974d0 Mon Sep 17 00:00:00 2001 From: crossdark Date: Fri, 1 Nov 2024 19:24:47 +0800 Subject: [PATCH] 3.2.7 action --- .gitea/workflows/pypi.yaml | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pypi.yaml b/.gitea/workflows/pypi.yaml index 94e5c29..dacb618 100644 --- a/.gitea/workflows/pypi.yaml +++ b/.gitea/workflows/pypi.yaml @@ -5,14 +5,14 @@ on: jobs: build-push: - runs-on: ubuntu + runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python 3.11 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: '3.11' @@ -26,7 +26,7 @@ jobs: python3.11 setup.py sdist bdist_wheel - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: python-dist path: | diff --git a/setup.py b/setup.py index 3900671..29f3eec 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools from CrossDown import Meta -meta = Meta(3, 2, 7) +meta = Meta(3, 2, 8) setuptools.setup( name="CrossDown",