Skip to content

Commit 6c09d6f

Browse files
committed
testing 3.10
1 parent ac9213d commit 6c09d6f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
python-version: [3.7, 3.8, 3.9]
25+
python-version: [3.10]
2626

2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -52,7 +52,7 @@ jobs:
5252
bash <(curl -s https://codecov.io/bash)
5353
5454
- name: Make docs
55-
if: matrix.python-version == '3.8'
55+
if: matrix.python-version == '3.10'
5656
shell: bash -l {0}
5757
run: |
5858
cd docs
@@ -63,7 +63,7 @@ jobs:
6363
cd ..
6464
6565
- name: Deploy 🚀
66-
if: matrix.python-version == '3.8'
66+
if: matrix.python-version == '3.10'
6767
uses: JamesIves/[email protected]
6868
with:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def find_version(*paths):
3131
'License :: OSI Approved :: MIT License',
3232
'Programming Language :: Python :: 3.6',
3333
'Programming Language :: Python :: 3.7',
34-
'Programming Language :: Python :: 3.8'],
34+
'Programming Language :: Python :: 3.8',
35+
'Programming Language :: Python :: 3.9',
36+
'Programming Language :: Python :: 3.10'],
3537
install_requires=['numpy', 'obspy', 'stdb', 'geographiclib'],
3638
python_requires='>=3.6',
3739
packages=setuptools.find_packages(),

0 commit comments

Comments
 (0)