Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RENCI/APSViz-ui-data
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.5
Choose a base ref
...
head repository: RENCI/APSViz-ui-data
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
6 changes: 4 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -9,12 +9,14 @@
[MASTER]
init-hook='import sys; sys.path.append("./")'
max-line-length=150
disable=broad-except
disable=broad-except,broad-exception-raised
max-args=16
max-locals=25
min-public-methods=0
max-public-methods=27
fail-under=9.5
extension-pkg-allow-list=pydantic
max-branches=25
max-statements=62
max-positional-arguments=20
max-positional-arguments=20
max-attributes=12
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@

# This Dockerfile is used to build THE apsviz-ui-data python image

FROM python:3.12.6-slim
FROM python:3.13.2-slim

# update the image base
RUN apt-get update && apt-get -y upgrade
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@ Website/services that return data used to populate the [APSViz TerriaMap UI](htt
[![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/)
[![RENCI License](https://img.shields.io/badge/License-RENCI-blue.svg)](https://www.renci.org/)
#### Components and versions...
[![Python](https://img.shields.io/badge/Python-3.12.6-orange)](https://github.com/python/cpython)
[![Linting Pylint](https://img.shields.io/badge/Pylint-%203.3.1-yellow)](https://github.com/PyCQA/pylint)
[![Pytest](https://img.shields.io/badge/Pytest-%208.3.3-blue)](https://github.com/pytest-dev/pytest)
[![Python](https://img.shields.io/badge/Python-3.13.2-orange)](https://github.com/python/cpython)
[![Linting Pylint](https://img.shields.io/badge/Pylint-3.3.4-yellow)](https://github.com/PyCQA/pylint)
[![Pytest](https://img.shields.io/badge/Pytest-8.3.4-blue)](https://github.com/pytest-dev/pytest)
#### Build status..
[![PyLint the codebase](https://github.com/RENCI/apsviz-ui-data/actions/workflows/pylint.yml/badge.svg)](https://github.com/RENCI/apsviz-ui-data/actions/workflows/pylint.yml)
[![Build and push the Docker image](https://github.com/RENCI/apsviz-ui-data/actions/workflows/image-push.yml/badge.svg)](https://github.com/RENCI/apsviz-ui-data/actions/workflows/image-push.yml)
27 changes: 16 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -6,19 +6,24 @@
# SPDX-License-Identifier: LicenseRef-RENCI
# SPDX-License-Identifier: MIT

pydantic==2.9.2
fastapi==0.115.2
uvicorn==0.32.0
pydantic==2.10.6
fastapi==0.115.8
uvicorn==0.34.0
pyyaml==6.0.2
pyjwt==2.10.1
pylint==3.3.4
pytest==8.3.4
requests==2.32.3
psycopg2-binary==2.9.10

beautifulsoup4==4.12.3
pandas==2.2.3
numpy==2.1.2
pyjwt==2.9.0
pylint==3.3.1
pytest==8.3.3
requests==2.32.3
numpy==2.1.3
pytz==2024.2
scipy==1.14.1
xarray==2024.9.0
netcdf4==1.7.1.post2
pydap==3.5
xarray==2024.10.0
netcdf4==1.7.2
pydap==3.5.1
lxml==5.3.0


Loading