Skip to content

Commit

Permalink
Merge pull request #240 from alkaline-ml/fix-doc-deploy
Browse files Browse the repository at this point in the history
[MRG+2] Point to the proper repo
  • Loading branch information
tgsmith61591 authored Dec 1, 2019
2 parents 04c795c + a70f7ee commit c1c0a81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# pmdarima

[![PyPI version](https://badge.fury.io/py/pmdarima.svg)](https://badge.fury.io/py/pmdarima)
[![CircleCI](https://circleci.com/gh/tgsmith61591/pmdarima.svg?style=svg)](https://circleci.com/gh/tgsmith61591/pmdarima)
[![CircleCI](https://circleci.com/gh/alkaline-ml/pmdarima.svg?style=svg)](https://circleci.com/gh/alkaline-ml/pmdarima)
[![Build Status](https://dev.azure.com/tgsmith61591gh/pmdarima/_apis/build/status/tgsmith61591.pmdarima?branchName=master)](https://dev.azure.com/tgsmith61591gh/pmdarima/_build/latest?definitionId=1&branchName=master)
[![codecov](https://codecov.io/gh/tgsmith61591/pmdarima/branch/master/graph/badge.svg)](https://codecov.io/gh/tgsmith61591/pmdarima)
[![codecov](https://codecov.io/gh/alkaline-ml/pmdarima/branch/master/graph/badge.svg)](https://codecov.io/gh/alkaline-ml/pmdarima)
![Supported versions](https://img.shields.io/badge/python-3.5+-blue.svg)
![Downloads](https://img.shields.io/badge/dynamic/json?color=blue&label=downloads&query=%24.total&url=https%3A%2F%2Fstore.zapier.com%2Fapi%2Frecords%3Fsecret%3D1e061b29db6c4f15af01103d403b0237)
![Downloads/Week](https://img.shields.io/badge/dynamic/json?color=blue&label=downloads%2Fweek&query=%24.weekly&url=https%3A%2F%2Fstore.zapier.com%2Fapi%2Frecords%3Fsecret%3D1e061b29db6c4f15af01103d403b0237)
Expand Down
2 changes: 1 addition & 1 deletion build_tools/circle/build_push_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function deploy() {

# We have to re-add the origin with the GH_TOKEN credentials
git remote rm origin
git remote add origin https://${GH_NAME}:${GH_TOKEN}@github.com/${GH_NAME}/pmdarima.git
git remote add origin https://${GH_NAME}:${GH_TOKEN}@github.com/alkaline-ml/pmdarima.git

# NOW we should be able to push it
git push origin gh-pages
Expand Down
4 changes: 2 additions & 2 deletions doc/_static/js/contrib.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function commaFmt(x) {
}

function fetchContributors() {
$.getJSON("https://api.github.com/repos/tgsmith61591/pmdarima/stats/contributors", function(arr) {
$.getJSON("https://api.github.com/repos/alkaline-ml/pmdarima/stats/contributors", function(arr) {
// sort the array based on total count
arr.sort(function(a, b) {
var aTotal = a['total'];
Expand Down Expand Up @@ -45,7 +45,7 @@ function fetchContributors() {
'<div class="contrib-stats-wrapper">' +
'<span class="ameta">' +
'<span class="cmeta">' +
'<a href="https://github.com/tgsmith61591/pmdarima/commits?author=' + authorLogin + '" class="cmt">' + commaFmt(total) + ' commit' + p + '</a> / ' +
'<a href="https://github.com/alkaline-ml/pmdarima/commits?author=' + authorLogin + '" class="cmt">' + commaFmt(total) + ' commit' + p + '</a> / ' +
'<span class="a">' + commaFmt(adds) + ' ++</span> / ' +
'<span class="d">' + commaFmt(dels) + ' --</span>' +
'</span>' +
Expand Down

0 comments on commit c1c0a81

Please sign in to comment.