Skip to content

Commit

Permalink
Remove pandas upper bound (#16)
Browse files Browse the repository at this point in the history
* remove pandas upper bound

* update release notes

* add python 3.11 tests
  • Loading branch information
thehomebrewnerd authored Feb 7, 2024
1 parent d7a648d commit 943f2f4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10"]
python_version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.10"]
python_version: ["3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests_with_latest_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10"]
python_version: ["3.8", "3.9", "3.10", "3.11"]
featuretools_version: ["main", "release"]
steps:
- name: Checkout repository
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
Expand All @@ -29,7 +30,7 @@ license = {text = "BSD 3-clause"}
requires-python = ">=3.8,<4"
dependencies = [
"numpy >= 1.21.0",
"pandas >= 1.5.0, <2.0.0",
"pandas >= 1.5.0",
"featuretools >= 1.5.0, <2.0.0",
"woodwork >= 0.8.1",
"nltk >= 3.4.5",
Expand Down
4 changes: 4 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release Notes
-------------

Future Release
==============
* Remove pandas version upper bound restriction and add Python 3.11 tests (:pr:`16`)

v0.0.2 May 9, 2023
==================
* Add primitives from nlp-primitives add on (:pr:`7`)
Expand Down

0 comments on commit 943f2f4

Please sign in to comment.