Updating setup test

This commit is contained in:
Allen Downey
2020-12-07 15:01:52 -05:00
parent ec7b7c67fb
commit 211402462c

View File

@@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Astronomical Data in Python\n",
"# Data Carpentry Astronomy Workshop\n",
"\n",
"This notebook imports the libraries we need for the workshop.\n",
"\n",
@@ -15,7 +15,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
@@ -24,7 +24,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
@@ -34,7 +34,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
@@ -46,7 +46,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
@@ -57,17 +57,16 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"import gala.coordinates as gc\n",
"from pyia import GaiaData"
"import gala.coordinates as gc"
]
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 6,
"metadata": {},
"outputs": [
{
@@ -99,9 +98,18 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"During the workshop, we might put some code on Slack and ask you to cut and paste it into the notebook.\n",
"During the workshop, we might put code on Slack and ask you to cut and paste it into the notebook.\n",
"\n",
"If you are on a Mac, you might encounter a problem: "
"If you are on a Mac, you might encounter a problem with smart quotes.\n",
"\n",
"To check, following this link to [our Slack workspace](https://app.slack.com/client/T01DJHEP8Q1/C01D2TZA8SH/details/pins) and find the pinned message with the setup instructions.\n",
"It contains a line of Python code.\n",
"\n",
"Copy the code from Slack and paste it in the cell below.\n",
"If it runs without producing an error, you are all set.\n",
"\n",
"Otherwise, you might have to change your system settings so it does not convert straight quotes to smart quotes.\n",
"If you have trouble with this, let us know and we will provide more details."
]
},
{