Skip to content

Commit dfa27ef

Browse files
committed
Keep supporting Pyton 3.6 and fix GitHub Packages URL
1 parent bfb6525 commit dfa27ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
2121
- name: Checkout repository

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/checkout@v6
2020

@@ -96,7 +96,7 @@ jobs:
9696
env:
9797
TWINE_USERNAME: ${{ github.repository_owner }}
9898
TWINE_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
99-
run: twine upload --repository-url https://pypi.pkg.github.com/${{ github.repository_owner }} dist/*
99+
run: twine upload --repository-url https://upload.pypi.pkg.github.com/${{ github.repository_owner }}/ dist/*
100100

101101
smoke-test:
102102
name: Smoke test published package

0 commit comments

Comments
 (0)