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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:3.8",
"image": "mcr.microsoft.com/devcontainers/python:3.11",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "none"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you have changed either the host or port with system arguments, use those ins

### Updating
We also recommend keeping up to date with the repo changes, and most importantly,
the [astrodbkit2](https://github.com/dr-rodriguez/AstrodbKit2) package:
the [astrodbkit](https://github.com/astrodbtoolkit/AstrodbKit) package:
```bash
git pull
pip install -Ur requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: simple
channels:
- defaults
dependencies:
- python=3.9.16
- python=3.11.11
- pip
- pip:
- -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
astrodbkit2>=0.5.1
astrodbkit>=2.2
astropy>=5.2.0,<6
bokeh==3.0.2
flask>=3.0,<4
Expand Down
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.8.8
python-3.11.11
2 changes: 1 addition & 1 deletion simple_app/simports.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Importing all packages
"""
# external packages
from astrodbkit2.astrodb import Database # used for pulling out database and querying
from astrodbkit.astrodb import Database # used for pulling out database and querying
from astropy.coordinates import SkyCoord # coordinates
from astropy.io import fits # handling fits files
import astropy.units as u # units
Expand Down