-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adbb5d7
commit 9c38346
Showing
1 changed file
with
38 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|