Skip to content

Commit

Permalink
Merge pull request #1 from bopen/python-3.8
Browse files Browse the repository at this point in the history
Python 3.8
  • Loading branch information
alexamici authored Mar 9, 2022
2 parents 6f6a984 + ea759b4 commit 1566e05
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
uses: actions/cache@v2
with:
path: ~/conda_pkgs_dir
key: ubuntu-latest-3.9
key: ubuntu-latest-3.8
- uses: conda-incubator/setup-miniconda@v2
with:
channels: default, conda-forge
channel-priority: strict
mamba-version: "*"
activate-environment: ubuntu-latest-3.9
activate-environment: ubuntu-latest-3.8
auto-update-conda: false
python-version: 3.9
python-version: 3.8
use-only-tar-bz2: true
- name: Install dependencies
run: |
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.9
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.8
- name: Install package
run: |
python -m pip install --no-deps -e .
Expand All @@ -57,19 +57,19 @@ jobs:
uses: actions/cache@v2
with:
path: ~/conda_pkgs_dir
key: ubuntu-latest-3.9
key: ubuntu-latest-3.8
- uses: conda-incubator/setup-miniconda@v2
with:
channels: default, conda-forge
channel-priority: strict
mamba-version: "*"
activate-environment: ubuntu-latest-3.9
activate-environment: ubuntu-latest-3.8
auto-update-conda: false
python-version: 3.9
python-version: 3.8
use-only-tar-bz2: true
- name: Install dependencies
run: |
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.9
make conda-env-update CONDA=mamba ENVIRONMENT=ubuntu-latest-3.8
- name: Install package
run: |
python -m pip install --no-deps -e .
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
long_description_content_type=text/markdown
long_description = file: README.md

[options]
packages = find:
python_requires = >=3.9
python_requires = >=3.8
install_requires =
attrs
click
Expand Down

0 comments on commit 1566e05

Please sign in to comment.