From 148d1c637abbfac85012fd27019920f50b548248 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 22 Mar 2024 12:40:38 -0400 Subject: [PATCH 1/4] Squashed commit of the following: commit 3a5daf2b3694b81c37ee859c52cdd0603b84c16b Author: Liam Connors Date: Fri Mar 22 12:31:52 2024 -0400 Update config.yml commit 901fa095a2ec851c9e7cff7bff9a517b7507cd85 Author: Liam Connors Date: Fri Mar 22 12:19:25 2024 -0400 Update config.yml commit 3f118e5b274fafed79c12a3d7cb73c35d2464ff0 Author: Liam Connors Date: Fri Mar 22 12:14:35 2024 -0400 Update config.yml commit 94a910ba2781a478bfcd2bf4c83f0f6cf1b5ed5d Author: Liam Connors Date: Fri Mar 22 12:09:42 2024 -0400 Update config.yml commit 1e4debab5ca0b0e9269fbdc934f74d004a29349c Author: Liam Connors Date: Fri Mar 22 12:03:52 2024 -0400 Update config.yml commit 969621dc8f21fcd99909d3d43600a27578972eee Author: Liam Connors Date: Fri Mar 22 11:57:42 2024 -0400 Update config.yml commit 196447d91155b0643f2829f1595b3c26370f5026 Author: Liam Connors Date: Fri Mar 22 11:55:13 2024 -0400 Update config.yml commit a833908da75644b4565dfed8dfbe57628fcc2a74 Author: Liam Connors Date: Fri Mar 22 11:45:19 2024 -0400 Update config.yml commit 0c0be5220c8c97628736d1b7ee4c4e7e21be6e87 Author: Liam Connors Date: Fri Mar 22 11:43:11 2024 -0400 Update config.yml commit 8338462e453edc53d6bc55adb8e854640f886459 Author: Liam Connors Date: Fri Mar 22 11:37:58 2024 -0400 Update config.yml commit 37ab35a5ece26b5ec5e7ac7f327b0a96201c1dd8 Author: Liam Connors Date: Fri Mar 22 11:30:50 2024 -0400 Update config.yml commit e1d12085a3f54a44a3e820c618bfe2de04b99b6e Author: Liam Connors Date: Fri Mar 22 11:27:57 2024 -0400 Update config.yml commit 396cee674cac38b701e848ca821a15f9c4a9b9c5 Author: Liam Connors Date: Fri Mar 22 11:06:57 2024 -0400 Update config.yml commit 40b37b11f48441a232af44482c97dfccf03aff96 Author: Liam Connors Date: Fri Mar 22 10:52:04 2024 -0400 Update config.yml commit e0ee830c991b4b92cdcc218b3b2e1c1ba5db6fb7 Author: Liam Connors Date: Fri Mar 22 10:37:01 2024 -0400 Update config.yml commit cfc29c645dae969244a7de218ab477a12170169e Author: Liam Connors Date: Fri Mar 22 10:33:41 2024 -0400 Update config.yml commit 028a090eb52cb07099ec8f221469c3b9b61bd7de Author: Liam Connors Date: Fri Mar 22 10:29:25 2024 -0400 Update config.yml commit a7f7bfbda528f413092de255adc73bf53f7cd424 Author: Liam Connors Date: Fri Mar 22 10:27:06 2024 -0400 Update config.yml commit ba15bbf14d854ac07c44e6ea38d9dbda1c514434 Author: Liam Connors Date: Fri Mar 22 10:10:25 2024 -0400 Update config.yml commit 7942fbfb768af4172f11184a0ba20b647dd73e22 Author: Liam Connors Date: Fri Mar 22 10:08:23 2024 -0400 update ruby --- .circleci/config.yml | 21 ++- Gemfile.lock | 419 ++++++++++++++++++++++--------------------- 2 files changed, 226 insertions(+), 214 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e320e60c4..a4e7a4dbd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: docker: # a packaged system that has the instructions for creating a running container. - - image: circleci/ruby:2.3.3 + - image: circleci/ruby:2.7.4 # actions that need to be taken to perform your job steps: @@ -36,17 +36,21 @@ jobs: - run: name: install dependencies command: | + set -x + gem install bundler:2.4.22 bundle install --path vendor/bundle sudo rm /etc/apt/sources.list - echo "deb http://archive.debian.org/debian/ jessie main contrib non-free" | sudo tee -a /etc/apt/sources.list - echo "deb-src http://archive.debian.org/debian jessie main contrib non-free" | sudo tee -a /etc/apt/sources.list + echo "deb http://ftp.us.debian.org/debian/ bookworm main contrib non-free" | sudo tee -a /etc/apt/sources.list + echo "deb-src http://ftp.us.debian.org/debian/ bookworm main contrib non-free" | sudo tee -a /etc/apt/sources.list echo "Acquire::Check-Valid-Until false;" | sudo tee -a /etc/apt/apt.conf.d/10-nocheckvalid echo '# Package: *\nPin: origin "archive.debian.org"\nPin-Priority: 500' | sudo tee -a /etc/apt/preferences.d/10-archive-pin sudo apt-get update - sudo apt install python-pip - sudo pip install PyYAML==5.4.1 - sudo pip install python-frontmatter==0.5.0 - sudo pip install pathlib + sudo apt-get install python3-full python3-pip + python3 -m venv venv + source venv/bin/activate + pip install PyYAML==6.0.1 + pip install python-frontmatter==0.5.0 + pip install pathlib - save_cache: key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }} @@ -56,6 +60,7 @@ jobs: - run: name: deployment command: | + source venv/bin/activate git config --global user.email "accounts@plot.ly" git config --global user.name "plotlydocbot" echo @@ -103,7 +108,7 @@ jobs: rm -f snapshots/*.bkp rm -f snapshots/*/*.bkp rm -f snapshots/*/*/*.bkp - percy snapshot snapshots --enable_javascript + bundle exec percy snapshot snapshots --enable_javascript rm -rf 'snapshots/' if [ "${CIRCLE_BRANCH}" == "master" ]; then git clone --depth=1 --branch=gh-pages https://github.com/plotly/documentation.git diff --git a/Gemfile.lock b/Gemfile.lock index e660f99bd..cd642c3f8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,14 +1,19 @@ GEM remote: https://rubygems.org/ specs: - activesupport (4.2.10) - i18n (~> 0.7) - minitest (~> 5.1) - thread_safe (~> 0.3, >= 0.3.4) - tzinfo (~> 1.1) - addressable (2.5.2) - public_suffix (>= 2.0.2, < 4.0) - algoliasearch (1.23.2) + activesupport (7.1.3.2) + base64 + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + minitest (>= 5.1) + mutex_m + tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) + algoliasearch (1.27.5) httpclient (~> 2.8, >= 2.8.3) json (>= 1.5.1) algoliasearch-jekyll (0.8.2) @@ -22,224 +27,226 @@ GEM bundler rake thor (>= 0.14.0) - awesome_print (1.8.0) - byebug (10.0.2) - coderay (1.1.2) + awesome_print (1.9.2) + base64 (0.2.0) + bigdecimal (3.1.7) + byebug (11.1.3) + coderay (1.1.3) coffee-script (2.4.1) coffee-script-source execjs - coffee-script-source (1.11.1) + coffee-script-source (1.12.2) colorator (1.1.0) - commander (4.4.7) + commander (4.6.0) highline (~> 2.0.0) - commonmarker (0.17.13) - ruby-enum (~> 0.5) - concurrent-ruby (1.0.5) - dnsruby (1.61.2) - addressable (~> 2.5) - em-websocket (0.5.1) + commonmarker (0.23.10) + concurrent-ruby (1.2.3) + connection_pool (2.4.1) + dnsruby (1.71.0) + simpleidn (~> 0.2.1) + drb (2.2.1) + em-websocket (0.5.3) eventmachine (>= 0.12.9) - http_parser.rb (~> 0.6.0) - ethon (0.11.0) - ffi (>= 1.3.0) + http_parser.rb (~> 0) + ethon (0.16.0) + ffi (>= 1.15.0) eventmachine (1.2.7) - eventmachine (1.2.7-x64-mingw32) - eventmachine (1.2.7-x86-mingw32) - excon (0.71.0) - execjs (2.7.0) - faraday (0.15.3) + excon (0.105.0) + execjs (2.9.1) + faraday (0.15.4) multipart-post (>= 1.2, < 3) - ffi (1.9.25) - ffi (1.9.25-x64-mingw32) - ffi (1.9.25-x86-mingw32) + ffi (1.16.3) forwardable-extended (2.6.0) - gemoji (3.0.0) - github-pages (192) - activesupport (= 4.2.10) - github-pages-health-check (= 1.8.1) - jekyll (= 3.9.0) - jekyll-avatar (= 0.6.0) - jekyll-coffeescript (= 1.1.1) - jekyll-commonmark-ghpages (= 0.1.5) - jekyll-default-layout (= 0.1.4) - jekyll-feed (= 0.10.0) + gemoji (4.1.0) + github-pages (231) + github-pages-health-check (= 1.18.2) + jekyll (= 3.9.5) + jekyll-avatar (= 0.8.0) + jekyll-coffeescript (= 1.2.2) + jekyll-commonmark-ghpages (= 0.4.0) + jekyll-default-layout (= 0.1.5) + jekyll-feed (= 0.17.0) jekyll-gist (= 1.5.0) - jekyll-github-metadata (= 2.9.4) - jekyll-mentions (= 1.4.1) - jekyll-optional-front-matter (= 0.3.0) + jekyll-github-metadata (= 2.16.1) + jekyll-include-cache (= 0.2.1) + jekyll-mentions (= 1.6.0) + jekyll-optional-front-matter (= 0.3.2) jekyll-paginate (= 1.1.0) - jekyll-readme-index (= 0.2.0) - jekyll-redirect-from (= 0.14.0) - jekyll-relative-links (= 0.5.3) - jekyll-remote-theme (= 0.3.1) + jekyll-readme-index (= 0.3.0) + jekyll-redirect-from (= 0.16.0) + jekyll-relative-links (= 0.6.1) + jekyll-remote-theme (= 0.4.3) jekyll-sass-converter (= 1.5.2) - jekyll-seo-tag (= 2.5.0) - jekyll-sitemap (= 1.2.0) - jekyll-swiss (= 0.4.0) - jekyll-theme-architect (= 0.1.1) - jekyll-theme-cayman (= 0.1.1) - jekyll-theme-dinky (= 0.1.1) - jekyll-theme-hacker (= 0.1.1) - jekyll-theme-leap-day (= 0.1.1) - jekyll-theme-merlot (= 0.1.1) - jekyll-theme-midnight (= 0.1.1) - jekyll-theme-minimal (= 0.1.1) - jekyll-theme-modernist (= 0.1.1) - jekyll-theme-primer (= 0.5.3) - jekyll-theme-slate (= 0.1.1) - jekyll-theme-tactile (= 0.1.1) - jekyll-theme-time-machine (= 0.1.1) - jekyll-titles-from-headings (= 0.5.1) - jemoji (= 0.10.1) - kramdown (= 1.17.0) - liquid (= 4.0.0) - listen (= 3.1.5) + jekyll-seo-tag (= 2.8.0) + jekyll-sitemap (= 1.4.0) + jekyll-swiss (= 1.0.0) + jekyll-theme-architect (= 0.2.0) + jekyll-theme-cayman (= 0.2.0) + jekyll-theme-dinky (= 0.2.0) + jekyll-theme-hacker (= 0.2.0) + jekyll-theme-leap-day (= 0.2.0) + jekyll-theme-merlot (= 0.2.0) + jekyll-theme-midnight (= 0.2.0) + jekyll-theme-minimal (= 0.2.0) + jekyll-theme-modernist (= 0.2.0) + jekyll-theme-primer (= 0.6.0) + jekyll-theme-slate (= 0.2.0) + jekyll-theme-tactile (= 0.2.0) + jekyll-theme-time-machine (= 0.2.0) + jekyll-titles-from-headings (= 0.5.3) + jemoji (= 0.13.0) + kramdown (= 2.4.0) + kramdown-parser-gfm (= 1.1.0) + liquid (= 4.0.4) mercenary (~> 0.3) - minima (= 2.5.0) - nokogiri (>= 1.8.2, < 2.0) - rouge (= 2.2.1) + minima (= 2.5.1) + nokogiri (>= 1.13.6, < 2.0) + rouge (= 3.30.0) terminal-table (~> 1.4) - github-pages-health-check (1.8.1) + github-pages-health-check (1.18.2) addressable (~> 2.3) dnsruby (~> 1.60) - octokit (~> 4.0) - public_suffix (~> 2.0) + octokit (>= 4, < 8) + public_suffix (>= 3.0, < 6.0) typhoeus (~> 1.3) - highline (2.0.2) - html-pipeline (2.8.4) + highline (2.0.3) + html-pipeline (2.14.3) activesupport (>= 2) nokogiri (>= 1.4) - http_parser.rb (0.6.0) + http_parser.rb (0.8.0) httpclient (2.8.3) - i18n (0.9.5) + i18n (1.14.4) concurrent-ruby (~> 1.0) - jekyll (3.9.0) + jekyll (3.9.5) addressable (~> 2.4) colorator (~> 1.0) em-websocket (~> 0.5) - i18n (~> 0.7) + i18n (>= 0.7, < 2) jekyll-sass-converter (~> 1.0) jekyll-watch (~> 2.0) - kramdown (~> 1.14) + kramdown (>= 1.17, < 3) liquid (~> 4.0) mercenary (~> 0.3.3) pathutil (~> 0.9) rouge (>= 1.7, < 4) safe_yaml (~> 1.0) - jekyll-avatar (0.6.0) - jekyll (~> 3.0) - jekyll-coffeescript (1.1.1) + jekyll-avatar (0.8.0) + jekyll (>= 3.0, < 5.0) + jekyll-coffeescript (1.2.2) coffee-script (~> 2.2) - coffee-script-source (~> 1.11.1) - jekyll-commonmark (1.2.0) - commonmarker (~> 0.14) - jekyll (>= 3.0, < 4.0) - jekyll-commonmark-ghpages (0.1.5) - commonmarker (~> 0.17.6) - jekyll-commonmark (~> 1) - rouge (~> 2) - jekyll-default-layout (0.1.4) - jekyll (~> 3.0) - jekyll-feed (0.10.0) - jekyll (~> 3.3) + coffee-script-source (~> 1.12) + jekyll-commonmark (1.4.0) + commonmarker (~> 0.22) + jekyll-commonmark-ghpages (0.4.0) + commonmarker (~> 0.23.7) + jekyll (~> 3.9.0) + jekyll-commonmark (~> 1.4.0) + rouge (>= 2.0, < 5.0) + jekyll-default-layout (0.1.5) + jekyll (>= 3.0, < 5.0) + jekyll-feed (0.17.0) + jekyll (>= 3.7, < 5.0) jekyll-gist (1.5.0) octokit (~> 4.2) - jekyll-github-metadata (2.9.4) - jekyll (~> 3.1) - octokit (~> 4.0, != 4.4.0) - jekyll-mentions (1.4.1) + jekyll-github-metadata (2.16.1) + jekyll (>= 3.4, < 5.0) + octokit (>= 4, < 7, != 4.4.0) + jekyll-include-cache (0.2.1) + jekyll (>= 3.7, < 5.0) + jekyll-mentions (1.6.0) html-pipeline (~> 2.3) - jekyll (~> 3.0) - jekyll-optional-front-matter (0.3.0) - jekyll (~> 3.0) + jekyll (>= 3.7, < 5.0) + jekyll-optional-front-matter (0.3.2) + jekyll (>= 3.0, < 5.0) jekyll-paginate (1.1.0) - jekyll-readme-index (0.2.0) - jekyll (~> 3.0) - jekyll-redirect-from (0.14.0) - jekyll (~> 3.3) - jekyll-relative-links (0.5.3) - jekyll (~> 3.3) - jekyll-remote-theme (0.3.1) - jekyll (~> 3.5) - rubyzip (>= 1.2.1, < 3.0) + jekyll-readme-index (0.3.0) + jekyll (>= 3.0, < 5.0) + jekyll-redirect-from (0.16.0) + jekyll (>= 3.3, < 5.0) + jekyll-relative-links (0.6.1) + jekyll (>= 3.3, < 5.0) + jekyll-remote-theme (0.4.3) + addressable (~> 2.0) + jekyll (>= 3.5, < 5.0) + jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) + rubyzip (>= 1.3.0, < 3.0) jekyll-sass-converter (1.5.2) sass (~> 3.4) - jekyll-seo-tag (2.5.0) - jekyll (~> 3.3) - jekyll-sitemap (1.2.0) - jekyll (~> 3.3) - jekyll-swiss (0.4.0) - jekyll-theme-architect (0.1.1) - jekyll (~> 3.5) + jekyll-seo-tag (2.8.0) + jekyll (>= 3.8, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) + jekyll-swiss (1.0.0) + jekyll-theme-architect (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-cayman (0.1.1) - jekyll (~> 3.5) + jekyll-theme-cayman (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-dinky (0.1.1) - jekyll (~> 3.5) + jekyll-theme-dinky (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-hacker (0.1.1) - jekyll (~> 3.5) + jekyll-theme-hacker (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-leap-day (0.1.1) - jekyll (~> 3.5) + jekyll-theme-leap-day (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-merlot (0.1.1) - jekyll (~> 3.5) + jekyll-theme-merlot (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-midnight (0.1.1) - jekyll (~> 3.5) + jekyll-theme-midnight (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-minimal (0.1.1) - jekyll (~> 3.5) + jekyll-theme-minimal (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-modernist (0.1.1) - jekyll (~> 3.5) + jekyll-theme-modernist (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-primer (0.5.3) - jekyll (~> 3.5) + jekyll-theme-primer (0.6.0) + jekyll (> 3.5, < 5.0) jekyll-github-metadata (~> 2.9) jekyll-seo-tag (~> 2.0) - jekyll-theme-slate (0.1.1) - jekyll (~> 3.5) + jekyll-theme-slate (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-tactile (0.1.1) - jekyll (~> 3.5) + jekyll-theme-tactile (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-theme-time-machine (0.1.1) - jekyll (~> 3.5) + jekyll-theme-time-machine (0.2.0) + jekyll (> 3.5, < 5.0) jekyll-seo-tag (~> 2.0) - jekyll-titles-from-headings (0.5.1) - jekyll (~> 3.3) - jekyll-watch (2.0.0) + jekyll-titles-from-headings (0.5.3) + jekyll (>= 3.3, < 5.0) + jekyll-watch (2.2.1) listen (~> 3.0) - jemoji (0.10.1) - gemoji (~> 3.0) + jemoji (0.13.0) + gemoji (>= 3, < 5) html-pipeline (~> 2.2) - jekyll (~> 3.0) - json (2.1.0) - kramdown (1.17.0) - liquid (4.0.0) - listen (3.1.5) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) - ruby_dep (~> 1.2) + jekyll (>= 3.0, < 5.0) + json (2.7.1) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.4) + listen (3.9.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.3.6) - method_source (0.9.0) - mini_portile2 (2.4.0) - minima (2.5.0) - jekyll (~> 3.5) + method_source (1.0.0) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) - minitest (5.11.3) - multipart-post (2.0.0) - nokogiri (1.10.9) - mini_portile2 (~> 2.4.0) - nokogiri (1.10.9-x64-mingw32) - mini_portile2 (~> 2.4.0) - nokogiri (1.10.9-x86-mingw32) - mini_portile2 (~> 2.4.0) - octokit (4.12.0) + minitest (5.22.3) + multipart-post (2.4.0) + mutex_m (0.2.0) + nokogiri (1.15.6-arm64-darwin) + racc (~> 1.4) + octokit (4.22.0) + faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) octopress (3.0.11) jekyll (>= 2.0) @@ -258,66 +265,66 @@ GEM jekyll (~> 3.0) octopress-hooks (2.6.2) jekyll (>= 2.0) - pathutil (0.16.1) + pathutil (0.16.2) forwardable-extended (~> 2.6) percy-cli (1.4.0) addressable (~> 2) commander (~> 4.3) percy-client (~> 2.0) thread (~> 0.2) - percy-client (2.0.3) + percy-client (2.1.1) addressable - excon - faraday (>= 0.9) - pry (0.11.3) - coderay (~> 1.1.0) - method_source (~> 0.9.0) - pry-byebug (3.6.0) - byebug (~> 10.0) - pry (~> 0.10) - public_suffix (2.0.5) - rake (12.3.3) - rb-fsevent (0.10.3) - rb-inotify (0.9.10) - ffi (>= 0.5.0, < 2) - redcarpet (3.4.0) - rouge (2.2.1) - ruby-enum (0.7.2) - i18n - ruby_dep (1.5.0) - rubyzip (1.2.2) - safe_yaml (1.0.4) - sass (3.6.0) + excon (= 0.105.0) + faraday (= 0.15.4) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + pry-byebug (3.10.1) + byebug (~> 11.0) + pry (>= 0.13, < 0.15) + public_suffix (5.0.4) + racc (1.7.3) + rake (13.1.0) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) + ffi (~> 1.0) + redcarpet (3.6.0) + rexml (3.2.6) + rouge (3.30.0) + rubyzip (2.3.2) + safe_yaml (1.0.5) + sass (3.7.4) sass-listen (~> 4.0.0) sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) - sawyer (0.8.1) - addressable (>= 2.3.5, < 2.6) - faraday (~> 0.8, < 1.0) + sawyer (0.8.2) + addressable (>= 2.3.5) + faraday (> 0.8, < 2.0) + simpleidn (0.2.1) + unf (~> 0.1.4) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) - thor (0.20.0) + thor (1.3.1) thread (0.2.2) - thread_safe (0.3.6) titlecase (0.1.1) - typhoeus (1.3.0) + typhoeus (1.4.1) ethon (>= 0.9.0) - tzinfo (1.2.5) - thread_safe (~> 0.1) - unicode-display_width (1.4.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unf (0.1.4) + unf_ext + unf_ext (0.0.9.1) + unicode-display_width (1.8.0) verbal_expressions (0.1.5) PLATFORMS - ruby - x64-mingw32 - x86-mingw32 + arm64-darwin-23 DEPENDENCIES algoliasearch-jekyll (~> 0.8.2) github-pages jekyll-redirect-from - jekyll-seo-tag jekyll-sitemap jemoji octopress @@ -326,4 +333,4 @@ DEPENDENCIES rake BUNDLED WITH - 1.17.2 \ No newline at end of file + 2.4.22 From 427e6c75928f6288385d55d916afd3a3f5d9eaaf Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 22 Mar 2024 12:41:29 -0400 Subject: [PATCH 2/4] Update config.yml --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a4e7a4dbd..7913fe625 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,7 +36,6 @@ jobs: - run: name: install dependencies command: | - set -x gem install bundler:2.4.22 bundle install --path vendor/bundle sudo rm /etc/apt/sources.list From ebeff321a0bd1421e8d007e5d1560d25659c8484 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Tue, 26 Mar 2024 11:23:51 -0400 Subject: [PATCH 3/4] remove venv --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7913fe625..dd06b7295 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,6 +72,8 @@ jobs: python check-or-enforce-order.py _posts/matlab python check-or-enforce-order.py _posts/plotly_js echo `md5 -q all_static/css/main.css` > _data/cache_bust_css.yml + deactivate + rm -rf venv bundle exec jekyll build rm _data/mapbox_token.yml mkdir snapshots From 8e73075c3622b7018115b79ce52ad845a7ebd020 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Thu, 28 Mar 2024 09:23:45 -0400 Subject: [PATCH 4/4] Update Gemfile.lock --- Gemfile.lock | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile.lock b/Gemfile.lock index cd642c3f8..00edebdf9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -245,6 +245,8 @@ GEM mutex_m (0.2.0) nokogiri (1.15.6-arm64-darwin) racc (~> 1.4) + nokogiri (1.15.6-x86_64-linux) + racc (~> 1.4) octokit (4.22.0) faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) @@ -320,6 +322,7 @@ GEM PLATFORMS arm64-darwin-23 + x86_64-linux DEPENDENCIES algoliasearch-jekyll (~> 0.8.2)