Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/camsrv-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-ver: [8, 9]
python-ver: [12, 13]
tox-env: [cov, astropylts, astropydev]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Python to test links in docs with sphinx
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.13
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Set up Python to build docs with sphinx
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.13
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Python codestyle check
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.13
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
Expand Down
11 changes: 5 additions & 6 deletions camsrv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst

# Packages may add whatever they like to this file, but
# should keep this content at the top.
# ----------------------------------------------------------------------------
from ._astropy_init import * # noqa
# ----------------------------------------------------------------------------

__all__ = []

try:
from .version import version as __version__
except ImportError:
__version__ = ""
52 changes: 0 additions & 52 deletions camsrv/_astropy_init.py

This file was deleted.

Loading