Skip to content

Commit f8da87c

Browse files
authored
Drop py37 (#64)
1 parent cb640f9 commit f8da87c

File tree

3 files changed

+3
-30
lines changed

3 files changed

+3
-30
lines changed

.github/workflows/ci-additional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
mamba-version: "*"
7171
activate-environment: flox-tests
7272
auto-update-conda: false
73-
python-version: 3.8
73+
python-version: 3.9
7474
use-only-tar-bz2: true
7575

7676
- name: Install conda dependencies

.github/workflows/ci.yaml

+1-26
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: ["ubuntu-latest"]
28-
python-version: ["3.7", "3.8", "3.9"]
28+
python-version: ["3.8", "3.10"]
2929
steps:
3030
- uses: actions/checkout@v3
3131
with:
@@ -74,28 +74,3 @@ jobs:
7474
env_vars: RUNNER_OS,PYTHON_VERSION
7575
name: codecov-umbrella
7676
fail_ci_if_error: false
77-
78-
# docs-build:
79-
# name: Documentation build
80-
# runs-on: ubuntu-latest
81-
# steps:
82-
# - name: Checkout
83-
# uses: actions/checkout@v3
84-
# - name: set up Python 3.8
85-
# uses: actions/setup-python@v2
86-
# with:
87-
# python-version: 3.8
88-
89-
# - name: Install package
90-
# run: |
91-
# python -m pip install --upgrade pip
92-
# python -m pip install -e .
93-
94-
# - name: Install documentation dependencies
95-
# run: |
96-
# python -m pip install -r docs/requirements-docs.txt
97-
98-
# - name: Build docs
99-
# run: |
100-
# cd docs
101-
# make html

setup.cfg

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers =
1515
Intended Audience :: Science/Research
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.7
1918
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
2120
Programming Language :: Python :: 3.10
@@ -25,12 +24,11 @@ classifiers =
2524
packages = find:
2625
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2726
include_package_data = True
28-
python_requires = >=3.7
27+
python_requires = >=3.8
2928
install_requires =
3029
pandas
3130
numpy_groupies >= '0.9.15'
3231
toolz
33-
importlib-metadata; python_version < '3.8'
3432

3533
[options.extras_require]
3634
all =

0 commit comments

Comments
 (0)