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
16 changes: 8 additions & 8 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
os: [ubuntu-latest, windows-latest]
py: ['3.9', '3']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.py }}
check-latest: True
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
prospector
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-${{ github.run_id }}-${{ matrix.os }}-${{ matrix.py }}
path: .coverage.*
Expand All @@ -41,14 +41,14 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3'
check-latest: true
- name: Download coverage artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts
- name: Combine coverage files
Expand All @@ -66,9 +66,9 @@ jobs:
build-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3'
check-latest: true
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ cython_debug/
.abstra/

# Visual Studio Code
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the entire vscode folder
# .vscode/

Expand All @@ -206,4 +206,4 @@ marimo/_static/
marimo/_lsp/
__marimo__/


**.swp
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: 2
build:
os: ubuntu-24.04
tools:
python: "3.13"
python: "3.14"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
Expand Down
24 changes: 1 addition & 23 deletions discos_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
from functools import partial
from .client import DISCOSClient, DEFAULT_PORT
from .client import DISCOSClient, SRTClient, MedicinaClient, NotoClient

SRTClient = partial(
DISCOSClient,
address="192.168.200.203",
port=DEFAULT_PORT,
telescope="SRT"
)
MedicinaClient = partial(
DISCOSClient,
address="192.168.1.100",
port=DEFAULT_PORT,
telescope="Medicina"
)
NotoClient = partial(
DISCOSClient,
address="192.167.187.17",
port=DEFAULT_PORT,
telescope="Noto"
)

del partial
del DEFAULT_PORT

__all__ = [
"DISCOSClient",
Expand Down
Loading