Skip to content

Commit 1e2ae7d

Browse files
committed
Updating package requirements and related
1 parent b33075e commit 1e2ae7d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Python 3",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.8",
3+
"image": "mcr.microsoft.com/devcontainers/python:3.11",
44
"features": {
55
"ghcr.io/devcontainers/features/node:1": {
66
"version": "none"

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL

.github/workflows/python-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
18-
- name: Set up Python 3.8
19-
uses: actions/setup-python@v2
17+
- uses: actions/checkout@v4
18+
- name: Set up Python 3.11
19+
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.8
21+
python-version: 3.11
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have changed either the host or port with system arguments, use those ins
3535

3636
### Updating
3737
We also recommend keeping up to date with the repo changes, and most importantly,
38-
the [astrodbkit2](https://github.com/dr-rodriguez/AstrodbKit2) package:
38+
the [astrodbkit](https://github.com/astrodbtoolkit/AstrodbKit) package:
3939
```bash
4040
git pull
4141
pip install -Ur requirements.txt

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
astrodbkit2>=0.5.1
1+
astrodbkit>=2.2
22
astropy>=5.2.0,<6
33
bokeh==3.0.2
44
flask>=3.0,<4

simple_app/simports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Importing all packages
33
"""
44
# external packages
5-
from astrodbkit2.astrodb import Database # used for pulling out database and querying
5+
from astrodbkit.astrodb import Database # used for pulling out database and querying
66
from astropy.coordinates import SkyCoord # coordinates
77
from astropy.io import fits # handling fits files
88
import astropy.units as u # units

0 commit comments

Comments
 (0)