Skip to content

Commit

Permalink
Stop support for py3.8, start support py3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Feb 4, 2025
1 parent 8e124b6 commit 5a874e5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Checkout source
uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'

- name: Validate the tag version against the package version
run: python .github/workflows/validate_release_tag.py $GITHUB_REF
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'

- name: Install Python dependencies
run: pip install -e .[pre-commit,rmq,tests]
Expand All @@ -58,7 +58,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

services:
rabbitmq:
Expand Down Expand Up @@ -98,10 +98,10 @@ jobs:
- name: Checkout source
uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'

- name: Install flit
run: pip install flit~=3.4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'

- name: Install Python dependencies
run: pip install -e .[pre-commit,rmq,tests]
Expand All @@ -26,13 +26,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
rabbitmq: [latest]
include:
- python-version: '3.8'
- python-version: '3.9'
rabbitmq: '3.6'
- python-version: '3.8'
rabbitmq: '3.8'
- python-version: '3.9'
rabbitmq: '3.9'

services:
rabbitmq:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ classifiers = [
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
keywords = ['ommunication', 'messaging', 'rpc', 'broadcast']
requires-python = '>=3.8'
requires-python = '>=3.9'
dependencies = [
'deprecation',
'pyyaml~=6.0',
Expand Down

0 comments on commit 5a874e5

Please sign in to comment.