Skip to content

Commit

Permalink
re-add python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Jan 9, 2025
1 parent 69f0f9f commit cd21d0a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
max-parallel: 20
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ Monty is created to serve as a complement to the Python standard library. It
provides suite of tools to solve many common problems, and hopefully,
be a resource to collect the best solutions.

Monty supports Python 3.10+.
Monty supports Python 3.9+.

Please visit the [official docs](https://materialsvirtuallab.github.io/monty) for more information.
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ persistent=yes

# Minimum Python version to use for version dependent checks. Will default to
# the version used to run pylint.
py-version=3.10
py-version=3.9

# Discover python modules and packages in the file system subtree.
recursive=no
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maintainers = [
]
description = "Monty is the missing complement to Python."
readme = "README.md"
requires-python = ">=3.10,<3.14"
requires-python = ">=3.9,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
Expand Down Expand Up @@ -60,7 +60,7 @@ include = ["monty", "monty.*"]

[tool.black]
line-length = 120
target-version = ["py310"]
target-version = ["py39"]
include = '\.pyi?$'
exclude = '''
(
Expand Down

0 comments on commit cd21d0a

Please sign in to comment.