Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: remove outdated docutils pin #647

Merged
merged 3 commits into from
Feb 13, 2025
Merged
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
3 changes: 1 addition & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sphinx:
build:
os: ubuntu-22.04
tools:
python: "3.10"
python: "3.12"
apt_packages:
- graphviz
jobs:
Expand All @@ -22,7 +22,6 @@ build:

python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
Expand Down
6 changes: 0 additions & 6 deletions docs/requirements.txt

This file was deleted.

4 changes: 2 additions & 2 deletions pyvo/io/vosi/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def version(self, version):
@xmlelement
def tableset(self):
"""
The tableset. Must be a `TableSet` object.
The tableset. Must be a `~pyvo.io.vosi.vodataservice.TableSet` object.
"""
return self._tableset

Expand All @@ -259,7 +259,7 @@ def tableset(self, iterator, tag, data, config, pos):
@xmlelement(cls=vs.VODataServiceTable)
def table(self):
"""
The `VODataServiceTable` root element if present.
The `~pyvo.io.vosi.vodataservice.VODataServiceTable` root element if present.
"""
return self._table

Expand Down
11 changes: 6 additions & 5 deletions pyvo/io/vosi/vodataservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def version(self, version):
@xmlelement(name='schema')
def schemas(self):
"""
A list of schemas. Must contain only `Schema` objects.
A list of schemas. Must contain only `~pyvo.io.vosi.vodataservice.TableSchema` objects.

A named description of a set of logically related tables.

Expand Down Expand Up @@ -222,7 +222,8 @@ def utype(self, utype):
@xmlelement(name='table')
def tables(self):
"""
A list of tables in the schema. Must contain only `Table` objects.
A list of tables in the schema.
Must contain only `~pyvo.io.vosi.vodataservice.VODataServiceTable` objects.

A description of one of the tables that makes up the set.
The table names for the table should be unique.
Expand Down Expand Up @@ -429,7 +430,7 @@ def version(self, version):
def columns(self):
"""
A list of columns in the table.
Must contain only `TableParams` objects.
Must contain only `~pyvo.io.vosi.vodataservice.TableParam` objects.

A description of a table column.
"""
Expand All @@ -444,7 +445,7 @@ def columns(self, iterator, tag, data, config, pos):
@xmlelement(name='foreignKey')
def foreignkeys(self):
"""
A list of columns in the table. Must contain only `ForeignKey` objects
A list of columns in the table. Must contain only `~pyvo.io.vosi.vodataservice.ForeignKey` objects

a description of a foreign keys, one or more columns
from the current table that can be used to join with
Expand Down Expand Up @@ -1004,7 +1005,7 @@ def targettable(self, targettable):
@xmlelement(name='fkColumn')
def fkcolumns(self):
"""
A list of foreign key columns. Must contain only `FKColumn` objects.
A list of foreign key columns. Must contain only `~pyvo.io.vosi.vodataservice.FKColumn` objects.

a pair of column names, one from this table and one
from the target table that should be used to join the
Expand Down
Loading