Skip to content

Commit

Permalink
Remove 3.7, add 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
moi90 committed Jan 15, 2024
1 parent 2535e34 commit 8da8630
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.8", "3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest, macos-latest]
optional: [optional, no_optional]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
"dictdiffer",
"numpy>=1.20",
"pandas>=1.3",
"typing_extensions", # For `final` from 3.7 onwards
],
python_requires=">=3.7",
python_requires=">=3.8",
extras_require={
"tests": ["pytest", "pytest-cov", "pytest-benchmark"],
"optional": ["scikit-optimize", "scikit-learn", "matplotlib", "natsort"],
Expand All @@ -47,10 +46,10 @@
entry_points={"console_scripts": ["experitur=experitur.cli:cli"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310}-{optional,no_optional}
envlist = py{38,39,310,311}-{optional,no_optional}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 8da8630

Please # to comment.