Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
V1 0 6 (#76)
Browse files Browse the repository at this point in the history
* Version Display

- Adds version display to the web UI home screen
for all three components for clarity with style
alerting when key versions mismatch.
- Also added hooks for APM to support API
tuning and some backwards-compatible changes to
the API for additional debugging clarity.
- Refactored build configuration into yaml files
for greater extensibility.
- Updated web UI dependencies.
- Drop support for Python 3.5 now that is has passed its end-of-life date.

* Python 3.9

Adds official support for Python 3.9 now that the DS
stack libraries have released with 3.9 support as well.
  • Loading branch information
sernst committed Feb 24, 2021
1 parent 523cbbc commit df39ba1
Show file tree
Hide file tree
Showing 79 changed files with 9,710 additions and 8,443 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Expand Up @@ -155,3 +155,5 @@ build
cauldron-web
cauldron_notebook.egg-info
dist

docker/build-configs
6 changes: 6 additions & 0 deletions .gitignore
Expand Up @@ -178,3 +178,9 @@ release-settings.json

.pytest_cache
/cauldron-web/package-lock.json

# Remove for experimental purposes
docker-apm.dockerfile
docker/build-configs/*-apm.yaml
docker/apm
docker/apm/apm.bat
36 changes: 3 additions & 33 deletions .gitlab-ci.yml
Expand Up @@ -2,32 +2,6 @@ stages:
- check
- broadcast

pytest-py353:
image: python:3.5.3
stage: check
script:
- export PYTHONPATH="${PYTHONPATH}:$(pwd)"
- pip install -r requirements.txt
- >
py.test
--verbose
--cov-report term
--cov=cauldron
.
pytest-py35:
image: python:3.5
stage: check
script:
- export PYTHONPATH="${PYTHONPATH}:$(pwd)"
- pip install -r requirements.txt
- >
py.test
--verbose
--cov-report term
--cov=cauldron
.
pytest-py36:
image: python:3.6
stage: check
Expand Down Expand Up @@ -76,12 +50,8 @@ pytest-py38:
expire_in: 1 day

pytest-py39:
image: python:3.9.0rc2
image: python:3.9
stage: check
# It takes too long to build everything from source at this point
# so this is disabled until wheels start appearing.
when: manual
allow_failure: true
script:
- export PYTHONPATH="${PYTHONPATH}:$(pwd)"
- pip install -r requirements.txt
Expand All @@ -93,15 +63,15 @@ pytest-py39:
.
codecov:
image: python:3.8
image: python:3.9
stage: broadcast
script:
- pip install codecov
- ls -la
- codecov

coveralls:
image: python:3.8
image: python:3.9
stage: broadcast
script:
- pip install coveralls
Expand Down
7 changes: 1 addition & 6 deletions cauldron-app/.eslintrc.js
Expand Up @@ -6,7 +6,7 @@ module.exports = {
},

extends: [
'plugin:vue/essential',
'plugin:vue/recommended',
'@vue/airbnb',
],

Expand All @@ -29,9 +29,4 @@ module.exports = {
},
},
],

'extends': [
'plugin:vue/recommended',
'@vue/airbnb'
]
};

0 comments on commit df39ba1

Please sign in to comment.