Skip to content

Commit 1566e05

Browse files
authored
Merge pull request #1 from bopen/python-3.8
Python 3.8
2 parents 6f6a984 + ea759b4 commit 1566e05

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/on-push.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
uses: actions/cache@v2
2424
with:
2525
path: ~/conda_pkgs_dir
26-
key: ubuntu-latest-3.9
26+
key: ubuntu-latest-3.8
2727
- uses: conda-incubator/setup-miniconda@v2
2828
with:
2929
channels: default, conda-forge
3030
channel-priority: strict
3131
mamba-version: "*"
32-
activate-environment: ubuntu-latest-3.9
32+
activate-environment: ubuntu-latest-3.8
3333
auto-update-conda: false
34-
python-version: 3.9
34+
python-version: 3.8
3535
use-only-tar-bz2: true
3636
- name: Install dependencies
3737
run: |
38-
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.9
38+
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.8
3939
- name: Install package
4040
run: |
4141
python -m pip install --no-deps -e .
@@ -57,19 +57,19 @@ jobs:
5757
uses: actions/cache@v2
5858
with:
5959
path: ~/conda_pkgs_dir
60-
key: ubuntu-latest-3.9
60+
key: ubuntu-latest-3.8
6161
- uses: conda-incubator/setup-miniconda@v2
6262
with:
6363
channels: default, conda-forge
6464
channel-priority: strict
6565
mamba-version: "*"
66-
activate-environment: ubuntu-latest-3.9
66+
activate-environment: ubuntu-latest-3.8
6767
auto-update-conda: false
68-
python-version: 3.9
68+
python-version: 3.8
6969
use-only-tar-bz2: true
7070
- name: Install dependencies
7171
run: |
72-
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.9
72+
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.8
7373
- name: Install package
7474
run: |
7575
python -m pip install --no-deps -e .

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ classifiers =
1111
Operating System :: OS Independent
1212
Programming Language :: Python
1313
Programming Language :: Python :: 3
14+
Programming Language :: Python :: 3.8
1415
Programming Language :: Python :: 3.9
1516
Topic :: Scientific/Engineering
1617
long_description_content_type=text/markdown
1718
long_description = file: README.md
1819

1920
[options]
2021
packages = find:
21-
python_requires = >=3.9
22+
python_requires = >=3.8
2223
install_requires =
2324
attrs
2425
click

0 commit comments

Comments
 (0)