Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 3 additions & 13 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ website <https://simbad.cds.unistra.fr/simbad/>`_, use the ``simbad`` sub-packag
Installation and Requirements
-----------------------------

Astroquery works with Python 3.9 or later.
Astroquery works with Python 3.10 or later.
As an `astropy`_ affiliate, astroquery requires `astropy`_ version 5.0 or later.

The latest version of astroquery can be pip installed (note the ``--pre`` for
Expand All @@ -62,22 +62,12 @@ dependencies required to build the documentation or run the tests):
$ python -m pip install -U --pre astroquery[all]


To install the 'bleeding edge' version:
To install the 'bleeding edge' version from GitHub:

.. code-block:: bash

$ python -m pip install git+https://github.com/astropy/astroquery.git

or cloned and installed from source:

.. code-block:: bash

$ # If you have a github account:
$ git clone git@github.com:astropy/astroquery.git
$ # If you do not:
$ git clone https://github.com/astropy/astroquery.git
$ cd astroquery
$ python -m pip install .

Using astroquery
----------------
Expand Down Expand Up @@ -114,7 +104,7 @@ looked up at the following `Zenodo page <https://doi.org/10.5281/zenodo.591669>`
Additional Links
----------------

Maintained by `Adam Ginsburg`_ and `Brigitta Sipocz <https://github.com/bsipocz>`_
Maintained by `Adam Ginsburg`_ and `Brigitta Sipőcz <https://github.com/bsipocz>`_


.. _Download Development ZIP: https://github.com/astropy/astroquery/zipball/main
Expand Down
8 changes: 6 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@
# See astropy.sphinx.conf for which values are set there.

import datetime
import os
import sys
import tomllib

if sys.version_info < (3, 11):
import tomli as tomllib
else:
import tomllib

from pathlib import Path

# Load all of the global Astropy configuration
Expand Down
Loading