Skip to content

Commit

Permalink
feat: python 3.13 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
akornatskyy committed Oct 17, 2024
1 parent 10d9e91 commit 6b99143
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/ci-cd.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI/CD
name: release
on:
push:
tags:
Expand All @@ -7,18 +7,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
- run: |
python -m pip install --upgrade pip
pip install twine
- name: Build and publish
env:
pip install setuptools twine
- env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
Expand All @@ -27,9 +23,7 @@ jobs:
src/wheezy/http/__init__.py
python setup.py sdist
twine upload dist/*
- name: Create release
id: create_release
uses: actions/create-release@v1
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
Expand Down

0 comments on commit 6b99143

Please sign in to comment.