Skip to content

Commit 1787e96

Browse files
committed
versioning; chores
1 parent cfdbd30 commit 1787e96

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
platform: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: [3.7, 3.8, 3.9]
16+
python-version: ["3.8", "3.9", "3.10"]
1717
runs-on: ${{matrix.platform}}
1818
steps:
1919
- name: Checkout source

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repos:
2121
hooks:
2222
- id: pyupgrade
2323
args:
24-
- --py37-plus
24+
- --py38-plus
2525
- repo: https://github.com/MarcoGorelli/absolufy-imports
2626
rev: v0.3.1
2727
hooks:

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,20 @@ authors = [
1616
maintainers = [
1717
{name = "Doug Davis", email = "[email protected]"}
1818
]
19-
requires-python = ">= 3.7"
19+
requires-python = ">= 3.8"
2020
dependencies = [
2121
"boost-histogram >=1.2.0",
2222
"dask >=2021.03.0",
2323
]
2424
readme = "README.md"
2525
classifiers = [
26-
"Development Status :: 4 - Beta",
2726
"Intended Audience :: Science/Research",
2827
"License :: OSI Approved :: BSD License",
2928
"Programming Language :: Python :: 3",
3029
"Programming Language :: Python :: 3 :: Only",
31-
"Programming Language :: Python :: 3.7",
3230
"Programming Language :: Python :: 3.8",
3331
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
3433
"Topic :: Scientific/Engineering",
3534
"Topic :: Scientific/Engineering :: Information Analysis",
3635
"Topic :: Scientific/Engineering :: Mathematics",
@@ -58,12 +57,12 @@ line_length = 88
5857
src_paths = ["src", "tests"]
5958

6059
[tool.mypy]
61-
python_version = 3.7
60+
python_version = 3.8
6261
warn_unused_configs = true
6362
files = ["src", "tests"]
6463

6564
[[tool.mypy.overrides]]
66-
module = ["dask.*"]
65+
module = ["tlz.*"]
6766
ignore_missing_imports = true
6867

6968
[tool.pydocstyle]

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ maintainer_email = [email protected]
1111
license = BSD-3-Clause
1212
license_file = LICENSE
1313
classifiers =
14-
Development Status :: 5 - Production/Stable
1514
Intended Audience :: Science/Research
1615
License :: OSI Approved :: BSD License
1716
Programming Language :: Python :: 3
1817
Programming Language :: Python :: 3 :: Only
19-
Programming Language :: Python :: 3.7
2018
Programming Language :: Python :: 3.8
2119
Programming Language :: Python :: 3.9
2220
Programming Language :: Python :: 3.10
@@ -30,7 +28,7 @@ packages = find:
3028
install_requires =
3129
boost-histogram>=1.2.0
3230
dask>=2021.03.0
33-
python_requires = >=3.7
31+
python_requires = >=3.8
3432
package_dir =
3533
=src
3634
zip_safe = False

0 commit comments

Comments
 (0)