Skip to content

Commit

Permalink
relax lower bound to 3.8 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Nov 9, 2023
1 parent feeddc9 commit 48c445d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
spec: ""
- label: Minimum
spec: >-
python=3.9
python=3.8
fail-fast: false
name: ${{ matrix.os }} • ${{ matrix.deps.label }}
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: opera-utils-env
channels:
- conda-forge
dependencies:
- python>=3.9
- python>=3.8
- pip>=21.3 # https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/#editable-installation
- git # for pip install, due to setuptools_scm
- h5py>=1.10
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ authors = [
]
description = "Miscellaneous utilities for working with OPERA data products"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
requires-python = ">=3.8"

classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -73,7 +74,7 @@ profile = "black"
known_first_party = [" opera_utils"]

[tool.mypy]
python_version = "3.9"
python_version = "3.8"
ignore_missing_imports = true


Expand Down

0 comments on commit 48c445d

Please sign in to comment.