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: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ workflows:
name: python-<< matrix.python_version>>
matrix:
parameters:
python_version: ["3.9", "3.10", "3.11", "3.12"]
python_version: ["3.10", "3.11", "3.12"]
- mypy:
<<: *always-run
- check_format:
Expand All @@ -77,7 +77,6 @@ workflows:
- circle-all:
<<: *always-run
requires:
- python-3.9
- python-3.10
- python-3.11
- python-3.12
Expand Down
2 changes: 1 addition & 1 deletion DEV_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Requirements

* python >= 3.9
* python >= 3.10
* [poetry](https://python-poetry.org/docs/)

## Commands
Expand Down
1 change: 1 addition & 0 deletions compute_modules/logging/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def __init__(
logger_name: str,
) -> None:
# Need to pass empty dict as `extra` param for 3.9 support
# TODO: update since 3.9 is no longer supported
super().__init__(_create_logger(logger_name), dict())

def process(self, msg: Any, kwargs: MutableMapping[str, Any]) -> Tuple[Any, MutableMapping[str, Any]]:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["Palantir", "Foundry", "Compute Modules"]
packages = [{ include = "compute_modules" }]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
requests = "^2.32.3"
external-systems = {version = "^0.108.0", extras = ["sources"]}
pyyaml = { version = "^6.0.1", optional = true }
Expand Down