Skip to content

Commit

Permalink
Enable Python 3.13 support with latest pint version
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Nov 13, 2024
1 parent bca8182 commit ee04a20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -43,5 +43,5 @@ jobs:
run: |
python3 -m pytest --cov
- name: Upload coverage to Codecov
if: matrix.python-version == 3.8
if: matrix.python-version == "3.10"
uses: codecov/codecov-action@v3
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# adtl – another data transformation language

[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![Python 3.13](https://img.shields.io/badge/python-3.13-red.svg)](https://www.python.org/downloads/release/python-3130/)
[![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)

[![tests](https://github.com/globaldothealth/adtl/actions/workflows/tests.yml/badge.svg)](https://github.com/globaldothealth/adtl/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/globaldothealth/adtl/branch/main/graph/badge.svg?token=QTD7HRR3TO)](https://codecov.io/gh/globaldothealth/adtl)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = [
"backports.zoneinfo;python_version<'3.9'",
"tomli>=2.0.0",
"pint>=0.20",
"pint>=0.24.4",
"requests>=2.0.0",
"fastjsonschema==2.16.*",
"tqdm",
Expand Down

0 comments on commit ee04a20

Please sign in to comment.