diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5acee50..c36dad0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.12' - run: | @@ -42,7 +42,7 @@ jobs: django-version: Django==4.2 - python-version: "3.10" - django-version: Django==5.0rc1 + django-version: Django==5.0 - python-version: "3.11" django-version: Django==3.2 @@ -51,19 +51,19 @@ jobs: django-version: Django==4.2 - python-version: "3.11" - django-version: Django==5.0rc1 + django-version: Django==5.0 - python-version: "3.12" django-version: Django==4.2 - python-version: "3.12" - django-version: Django==5.0rc1 + django-version: Django==5.0 name: Run Python ${{ matrix.python-version }} tests steps: - uses: actions/checkout@v4 - name: Setup python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} architecture: x64 diff --git a/scripts/create_release.py b/scripts/create_release.py index b7cd1f9..b3d63c1 100755 --- a/scripts/create_release.py +++ b/scripts/create_release.py @@ -50,21 +50,21 @@ def publish(): """ TODO: This script needs fixed. You can run it, but you'll have to commit manually and push the tag and commit. - + Then you can run the following: - + # Install requirements python -m pip install build twine - + # Build python -m build - + # Check build twine check dist/* - + # Test upload twine upload -r testpypi dist/* - + # Upload twine upload dist/* """