From 9c3834643fdb5afb52b2b371ff9d848a9497824f Mon Sep 17 00:00:00 2001 From: EhsanGharibNezhad Date: Mon, 27 Nov 2023 12:11:08 -0800 Subject: [PATCH] update travis.yml --- .travis.yml | 51 ++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 38 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index a43d5b78..6a3b4b0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,45 @@ language: python -python: - - "3.9" -git: - submodules: true +jobs: + include: + - name: "Python 3.9 on macOS" + os: osx + language: python + python: 3.9 -install: - - pip install TelescopeML + git: + submodules: true -script: - - python3.9 setup.py develop + install: + - pip install TelescopeML -branches: - only: - - main # Adjust to your main branch name, e.g., master + script: + - python3.9 setup.py develop -notifications: - email: false + branches: + only: + - main # Adjust to your main branch name, e.g., master + + notifications: + email: false + +#language: python +#python: +# - "3.9" +# +#git: +# submodules: true +# +#install: +# - pip install TelescopeML +# +#script: +# - python3.9 setup.py develop +# +#branches: +# only: +# - main # Adjust to your main branch name, e.g., master +# +#notifications: +# email: false