Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .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.8", "3.11", "3.12"]
python-version: ["3.10", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -23,6 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage[toml]
pip install -r requirements_dev.txt

- name: Install
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = unit_parse
version = 0.1.10
version = 0.1.12
description = Parse units from strings. From mess to order!
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -13,18 +13,18 @@ classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
packages =
unit_parse
python_requires = >=3.8
python_requires = >=3.10
package_dir =
=src
zip_safe = no
include_package_data = true
install_requires =
pint==0.21.1
pint>=0.24.1

[options.extras_require]
testing =
Expand Down