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
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,19 @@ jobs:
command: |
tox -e py312

test_feature_engine_py313:
docker:
- image: cimg/python:3.13.1
working_directory: ~/project
steps:
- checkout:
path: ~/project
- *prepare_tox
- run:
name: Run tests with Python 3.13
command: |
tox -e py313

test_style:
docker:
- image: cimg/python:3.10.0
Expand Down Expand Up @@ -172,6 +185,7 @@ workflows:
- test_feature_engine_py311_sklearn150
- test_feature_engine_py311_sklearn160
- test_feature_engine_py312
- test_feature_engine_py313
- test_style
- test_docs
- test_type
Expand All @@ -187,6 +201,7 @@ workflows:
- test_feature_engine_py311_sklearn150
- test_feature_engine_py311_sklearn160
- test_feature_engine_py312
- test_feature_engine_py313
- test_style
- test_docs
- test_type
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@ def list_reqs(fname='requirements.txt'):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
zip_safe=False)
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311-sklearn150, py311-sklearn160, py312, codecov, docs, stylechecks, typechecks
envlist = py39, py310, py311-sklearn150, py311-sklearn160, py312, py313, codecov, docs, stylechecks, typechecks
skipsdist = true

[testenv]
Expand Down Expand Up @@ -33,6 +33,10 @@ deps =
deps =
-rtest_requirements.txt

[testenv:py313]
deps =
-rtest_requirements.txt

[testenv:codecov]
deps =
-rtest_requirements.txt
Expand Down