Skip to content

Commit

Permalink
docs(streamlit): fix url for support matrix
Browse files Browse the repository at this point in the history
Quick fix for a URL we missed in the de-versioning.
  • Loading branch information
gforsyth authored and cpcloud committed Feb 3, 2023
1 parent 6d19111 commit 594199b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/backends/app/backend_info_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@

@st.experimental_memo(ttl=ONE_HOUR_IN_SECONDS)
def support_matrix_df():
resp = requests.get(
"https://ibis-project.org/docs/dev/backends/raw_support_matrix.csv"
)
resp = requests.get("https://ibis-project.org/backends/raw_support_matrix.csv")
resp.raise_for_status()

with tempfile.NamedTemporaryFile() as f:
Expand Down

0 comments on commit 594199b

Please sign in to comment.