diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e24549..2ba625c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 diff --git a/setup.cfg b/setup.cfg index 9445eec..03d0969 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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 =