Skip to content

Commit 55d51fd

Browse files
committed
Final v4 changes hopefully
1 parent e9517b4 commit 55d51fd

File tree

5 files changed

+7
-61
lines changed

5 files changed

+7
-61
lines changed

.github/workflows/ci.yml

+5-31
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: ["3.10"]
40+
python-version: [3.8, 3.9, "3.10"]
4141
os: [ubuntu-latest]
4242

4343
steps:
@@ -69,9 +69,9 @@ jobs:
6969
run: |
7070
python -m pip install --upgrade pip
7171
just install
72-
# - name: Run Lib Tests
73-
# run: |
74-
# just test-library
72+
- name: Run Lib Tests
73+
run: |
74+
just test-library
7575
- name: Run Func Tests
7676
run: |
7777
just test-functions
@@ -128,30 +128,4 @@ jobs:
128128
uses: pypa/gh-action-pypi-publish@release/v1
129129
with:
130130
user: CouncilDataProject
131-
password: ${{ secrets.PYPI_TOKEN }}
132-
133-
# Build and release cdp-backend Docker image
134-
- name: Sleep for PyPI Indexing Time
135-
run: |
136-
sleep 120
137-
138-
- name: Log in to GitHub Container Registry
139-
uses: docker/login-action@v2
140-
with:
141-
registry: ghcr.io
142-
username: ${{ github.actor }}
143-
password: ${{ secrets.GITHUB_TOKEN }}
144-
145-
- name: Extract Metadata (tags, labels) for Docker
146-
id: docker-meta
147-
uses: docker/metadata-action@v4
148-
with:
149-
images: ghcr.io/${{ github.repository }}
150-
151-
- name: Build and Push Docker Image to GitHub Container Registry
152-
uses: docker/build-push-action@v4
153-
with:
154-
context: .
155-
push: true
156-
tags: ${{ steps.docker-meta.outputs.tags }}
157-
labels: ${{ steps.docker-meta.outputs.labels }}
131+
password: ${{ secrets.PYPI_TOKEN }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ dev-infrastructure/Justfile
139139
dev-infrastructure/gcloud-functions/*
140140
dev-infrastructure/lifecycle-rules.json
141141
test-clipped.*
142+
faster-whisper-models/
142143

143144
# Common credentials directories
144145
.keys/

Dockerfile

-20
This file was deleted.

Justfile

-9
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,6 @@ serve-docs:
8585
just generate-docs
8686
python -mwebbrowser -t "file://{{project_uri}}/docs/_build/index.html"
8787

88-
# build the docker image for pipeline running
89-
DOCKER_IMAGE_NAME := 'councildataproject/cdp-backend'
90-
docker-build:
91-
docker build --progress=plain -t {{ DOCKER_IMAGE_NAME }} .
92-
93-
# run the docker image locally
94-
docker-run:
95-
docker run --rm -it --gpus all {{ DOCKER_IMAGE_NAME }} bash
96-
9788
# tag a new version
9889
tag-for-release version:
9990
git tag -a "{{version}}" -m "{{version}}"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pipeline = [
7878
"tqdm~=4.62",
7979
"transformers~=4.16",
8080
"vimeo_downloader~=0.4",
81-
"yt-dlp>=2022.2.4",
81+
"yt-dlp>=2023.2.17",
8282
]
8383
functions = [
8484
"flask==2.1.0",

0 commit comments

Comments
 (0)