Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Python 3.12+ as well as switching to the latest pint #11

Merged
merged 8 commits into from
Jul 5, 2024
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.10", "3.11"]
python-version: ["3.8", "3.10", "3.11"]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should 3.12 be added to the list?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I will add it to a new PR that I have coming


steps:
- uses: actions/checkout@v3
Expand All @@ -30,4 +30,4 @@ jobs:

- name: Test with pytest
run: |
pytest --cov --cov-report=html
pytest --cov --cov-report=html
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = unit_parse
version = 0.1.7
version = 0.1.9
description = Parse units from strings. From mess to order!
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down