Skip to content

Commit

Permalink
Merge pull request #41 from felixriese/python-311
Browse files Browse the repository at this point in the history
REMOVE python 3.7, ADD python 3.11
  • Loading branch information
felixriese committed Jul 8, 2023
2 parents 7d090af + defa51b commit af9ed18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests_and_linting.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# Python versions need to be strings (otherwise: 3.10 -> 3.1)
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions meta.yaml
Expand Up @@ -18,11 +18,11 @@ build:
requirements:
host:
- pip
- python >=3.7
- python >=3.8
run:
- joblib >=0.13.0
- numpy >=1.18.5
- python >=3.7
- python >=3.8
- scikit-learn >=0.21.1
- scipy >=1.3.1
- tqdm >=4.45.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,10 +40,10 @@
packages=setuptools.find_packages(),
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",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
Expand Down

0 comments on commit af9ed18

Please sign in to comment.