Skip to content

Commit b1df186

Browse files
committed
Add support for Python 3.14
1 parent 5479a17 commit b1df186

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
10+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Set up Python ${{ matrix.python-version }}
1414
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
17+
allow-prereleases: true
1718
cache: 'pip'
1819
cache-dependency-path: setup.py
1920
- name: Install dependencies

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def get_readme():
5252
'Programming Language :: Python :: 3.11',
5353
'Programming Language :: Python :: 3.12',
5454
'Programming Language :: Python :: 3.13',
55+
'Programming Language :: Python :: 3.14',
5556
],
5657
keywords='progress bar progress-bar progressbar spinner eta monitoring python terminal '
5758
'multi-threaded REPL alive animated visual feedback simple live efficient monitor '

0 commit comments

Comments
 (0)