Skip to content
Open
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ workflows:

- lumigo-orb/prep-it-resources:
context: common
venv_python_version: "3.9"
venv_python_version: "3.11"
requires:
- lumigo-orb/is_environment_available

Expand Down Expand Up @@ -81,7 +81,7 @@ workflows:
filters:
branches:
only: master
docker_image: lumigo/python-39-ci:latest
docker_image: lumigo/python-311-ci:latest
requires:
- test

Expand All @@ -100,7 +100,7 @@ jobs:
<<: *defaults
steps:
- lumigo-orb/checkout_code:
venv_python_version: "3.9"
venv_python_version: "3.11"
- lumigo-orb/checkout_utils
# run tests!
- run: echo "export AWS_DEFAULT_REGION=us-west-2" >> $BASH_ENV
Expand All @@ -114,6 +114,6 @@ jobs:
<<: *defaults
steps:
- lumigo-orb/checkout_code:
venv_python_version: "3.9"
venv_python_version: "3.11"
- lumigo-orb/checkout_utils
- run: ./scripts/create_layers.sh
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: 19.10b0
hooks:
- id: black
language_version: python3.9
language_version: python3.11
additional_dependencies: ["click==8.0.4"]

- repo: https://github.com/pre-commit/mirrors-mypy
Expand Down Expand Up @@ -34,6 +34,8 @@ repos:
rev: "1.7.0"
hooks:
- id: bandit
additional_dependencies:
- pbr==5
exclude: ^src/test|^src/test_utils|^src/component_test
args: [ "-lll" ]

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ pytest-httpserver==1.0.6
Werkzeug==2.2.3
markupsafe==2.1.3
Jinja2==3.1.2
lumigo-core==0.0.16
lumigo-core==0.0.16

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
version=open(VERSION_PATH).read(),
author="Lumigo LTD (https://lumigo.io)",
author_email="support@lumigo.io",
description="Lumigo Tracer for Python v3.6 / 3.7 / 3.8 / 3.9 / 3.10 runtimes",
description="Lumigo Tracer for Python v3.6 / 3.7 / 3.8 / 3.9 / 3.10 / 3.11 / 3.12 / 3.13 runtimes",
long_description_content_type="text/markdown",
url="https://github.com/lumigo-io/python_tracer.git",
package_dir={"": "src"},
Expand Down