Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to evaluated branch and deployment links #96

Merged
merged 28 commits into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eabe6ab
Reapplying fixes after recovering evaluated branch
jlstevens Feb 21, 2020
2a0587a
[build:attractors]
jlstevens Feb 24, 2020
177304f
Reverted anaconda-project version
jlstevens Feb 24, 2020
1873969
[build:attractors]
jlstevens Feb 24, 2020
3559720
Installing website build dependencies with --no-update-deps
jlstevens Feb 24, 2020
4b8ce7a
[build:attractors]
jlstevens Feb 24, 2020
4c637d4
Trying to only get nbsite from pyviz/label/dev
jlstevens Feb 24, 2020
5491dce
[build:attractors]
jlstevens Feb 24, 2020
17ea3a2
Only installing holoviews if not available for thumbnailing
jlstevens Feb 24, 2020
a966680
[build:attractors]
jlstevens Feb 24, 2020
4cb5a37
Added comment to conditional holoviews install line
jlstevens Feb 24, 2020
e1c5af9
Compressed user_fields onto a single line
jlstevens Feb 25, 2020
4fd0173
[build:iex_trading]
jlstevens Feb 25, 2020
c8dbcae
[build:iex_trading]
jlstevens Feb 25, 2020
e9df57f
Running git diff to see changes that might fail checkout
jlstevens Feb 25, 2020
da72d90
[build:iex_trading]
jlstevens Feb 25, 2020
0984928
[build:attractors]
jlstevens Feb 25, 2020
5fb1b4d
Reverting popping of user_fields
jlstevens Feb 25, 2020
abf9791
[build:iex_trading]
jlstevens Feb 25, 2020
c7007a4
Testing popping user_fields on travis
jlstevens Feb 25, 2020
46bfb01
[build:iex_trading]
jlstevens Feb 25, 2020
269007a
Bumped anaconda-project version back up
jlstevens Feb 25, 2020
fe78147
[build:iex_trading]
jlstevens Feb 25, 2020
d228bf2
Added user_fields to all projects
jlstevens Feb 25, 2020
95a89ec
Bumped anaconda-project version back down
jlstevens Feb 25, 2020
5a13bc0
[build:iex_trading]
jlstevens Feb 25, 2020
a212795
Identifying failures by reverting gerrymandering and opensky changes
jlstevens Feb 26, 2020
d07bd68
[build:iex_trading]
jlstevens Feb 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,15 @@ jobs:
- doit archive_project --name $DIR
- anaconda-project prepare --directory $DIR
- source activate $DIR/envs/default && pip install pyctdev
- conda install -y -c pyviz/label/dev "nbsite>=0.6.5" holoviews sphinx_pyviz_theme selenium phantomjs lxml nomkl
- which holoviews || conda install holoviews # Avoid clobbering an installed hv
- conda install -y "pyviz/label/dev::nbsite>=0.6.5" sphinx_pyviz_theme selenium phantomjs lxml nomkl
- doit build_project --name $DIR
after_success:
- git config user.email "travis@travis.org"
- git config user.name "travis"
- mv ./doc/$DIR ./tmp
- git fetch https://github.com/$TRAVIS_REPO_SLUG.git evaluated:refs/remotes/evaluated
- git diff
- git checkout evaluated || travis_terminate 1
- if [ -e ./doc/$DIR ]; then rm -rf ./doc/$DIR; fi
- mkdir ./doc/$DIR
Expand Down
2 changes: 2 additions & 0 deletions attractors/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ labels:
channels:
- pyviz

user_fields: [labels, skip, maintainers]

packages: &pkgs
- python=3.7
- notebook=6.0
Expand Down
2 changes: 2 additions & 0 deletions bay_trimesh/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- geoviews
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions boids/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ maintainers:
labels:
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions census/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- datashader
- geoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions datashader_dashboard/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ labels:
- datashader
- panel

user_fields: [labels, skip, maintainers]

channels:
- conda-forge
- nodefaults
Expand Down
13 changes: 3 additions & 10 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,9 @@ def gallery_spec(name):
spec = yaml.safe_load(f)
default = list(spec['commands'].values())[0]
url_name = name.replace('_', '-')
if 'notebook' in default.keys():
deployment_urls = [
f'https://{url_name}.pyviz.demo.anaconda.com/notebooks/',
f'https://{url_name}-notebooks.pyviz.demo.anaconda.com/notebooks/',
]
else:
deployment_urls = [
f'https://{url_name}.pyviz.demo.anaconda.com/',
f'https://{url_name}-notebooks.pyviz.demo.anaconda.com/notebooks/',
]
deployment_urls = [
f'https://{url_name}.pyviz.demo.anaconda.com',
f'https://{url_name}-notebooks.pyviz.demo.anaconda.com']
description = spec['description']
orphans = spec.get('orphans', [])
if 'index.ipynb' in os.listdir(os.path.join('..', name)):
Expand Down
1 change: 1 addition & 0 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ def archive_project(root='', name='all'):
spec.pop('created', '')
spec.pop('skip', '')
spec.pop('orphans', '')
spec.pop('user_fields', '')

# commands and envs that users don't need
spec['commands'].pop('test', '')
Expand Down
2 changes: 2 additions & 0 deletions euler/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ labels:
- panel
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions gapminders/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- panel
- channel_conda-forge

user_fields: [labels, skip, maintainers]

channels:
- conda-forge
- nodefaults
Expand Down
2 changes: 2 additions & 0 deletions glaciers/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ labels:
- geoviews
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions gull_tracking/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- datashader
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions heat_and_trees/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ labels:
- geoviews
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions hipster_dynamics/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ maintainers:
labels:
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions iex_trading/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ labels:
skip:
- IEX_to_CSV.ipynb

user_fields: [labels, skip, maintainers]

channels: [pyviz/label/dev]

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions landsat/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- geoviews
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions lsystems/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ maintainers:
labels:
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions ml_annotators/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- holoviews
- geoviews

user_fields: [labels, skip, maintainers]

channels:
- pyviz/label/dev

Expand Down
2 changes: 2 additions & 0 deletions network_packets/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ labels:
- datashader
- networkx

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions nyc_taxi/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- datashader
- panel

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions osm/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ maintainers:
labels:
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions portfolio_optimizer/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ labels:
- hvplot
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions square_limit/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ maintainers:
labels:
- holoviews

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions sri_model/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ labels:
- holoviews
- networkx

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions uk_researchers/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ maintainers:
labels:
- datashader

user_fields: [labels, skip, maintainers]

channels: []

packages: &pkgs
Expand Down
2 changes: 2 additions & 0 deletions voila_gpx_viewer/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ labels:
- bqplot
- ipyleaflet

user_fields: [labels, skip, maintainers]

channels:
- conda-forge

Expand Down
2 changes: 2 additions & 0 deletions walker_lake/anaconda-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ labels:
- datashader
- geoviews

user_fields: [labels, skip, maintainers]

channels: [conda-forge]

packages: &pkgs
Expand Down