Skip to content

Commit e9227f8

Browse files
authored
Merge pull request #42 from paudetseis/quick_updates
Quick installation update
2 parents 905e1a9 + db8d1eb commit e9227f8

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

.github/workflows/deploy.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
os: [ubuntu-latest]
25-
python-version: [3.7, 3.8, 3.9]
24+
os: ["ubuntu-latest", "macos-latest"]
25+
python-version: ["3.10"]
2626

2727
steps:
2828
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29-
- uses: actions/checkout@v2
30-
- uses: conda-incubator/setup-miniconda@v2
29+
- uses: actions/checkout@v4
30+
- uses: conda-incubator/setup-miniconda@v3
3131
with:
3232
activate-environment: test
3333
auto-activate-base: false
34+
python-version: ${{ matrix.python-version }}
3435

3536
- name: Install
3637
shell: bash -l {0}

rfpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
__version__ = '0.1.1'
23+
__version__ = '0.1.2'
2424

2525
__author__ = 'Pascal Audet'
2626

setup.py

+11-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os.path
33
from os import listdir
44
import re
5-
from numpy.distutils.core import setup
5+
from setuptools import setup
66
from pathlib import Path
77

88

@@ -31,14 +31,15 @@ def find_version(*paths):
3131
'Programming Language :: Python :: 3.6',
3232
'Programming Language :: Python :: 3.7',
3333
'Programming Language :: Python :: 3.8',
34-
'Programming Language :: Python :: 3.9'],
34+
'Programming Language :: Python :: 3.9',
35+
'Programming Language :: Python :: 3.10'],
3536
install_requires=['numpy', 'obspy', 'stdb>=0.2.0'],
36-
python_requires='>=3.6',
37+
python_requires='>=3.7',
3738
packages=setuptools.find_packages(),
38-
entry_points={'console_scripts':[
39-
'rfpy_calc=rfpy.scripts.rfpy_calc:main',
40-
'rfpy_recalc=rfpy.scripts.rfpy_recalc:main',
41-
'rfpy_plot=rfpy.scripts.rfpy_plot:main',
42-
'rfpy_harmonics=rfpy.scripts.rfpy_harmonics:main',
43-
'rfpy_hk=rfpy.scripts.rfpy_hk:main',
44-
'rfpy_ccp=rfpy.scripts.rfpy_ccp:main']})
39+
entry_points={'console_scripts': [
40+
'rfpy_calc=rfpy.scripts.rfpy_calc:main',
41+
'rfpy_recalc=rfpy.scripts.rfpy_recalc:main',
42+
'rfpy_plot=rfpy.scripts.rfpy_plot:main',
43+
'rfpy_harmonics=rfpy.scripts.rfpy_harmonics:main',
44+
'rfpy_hk=rfpy.scripts.rfpy_hk:main',
45+
'rfpy_ccp=rfpy.scripts.rfpy_ccp:main']})

0 commit comments

Comments
 (0)