Skip to content

Commit

Permalink
Update testing with py38 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt authored Aug 23, 2023
1 parent e7957b8 commit 463d3fb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.11" ]
python-version: [ "3.11", "3.8" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.11" ]
python-version: [ "3.11", "3.8" ]
steps:
- name: Check out repo
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ndex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.9"
- name: Install dependencies
run: |
pip install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.9"
- name: Install dependencies
run: |
pip install tox
Expand Down
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
"sphinx.ext.todo",
"sphinx.ext.mathjax",
"sphinx.ext.viewcode",
"sphinx_autodoc_typehints",
"sphinx_automodapi.automodapi",
"sphinx_automodapi.smart_resolver",
# 'texext',
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -55,7 +54,7 @@ install_requires =

zip_safe = false
include_package_data = True
python_requires = >=3.7
python_requires = >=3.8

# Where is my code
packages = find:
Expand All @@ -74,10 +73,9 @@ tests =
pytest
coverage
docs =
sphinx<7.0
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
sphinx_automodapi
charts =
matplotlib
Expand Down

0 comments on commit 463d3fb

Please sign in to comment.