Skip to content

Commit

Permalink
fix(deps): Bump CI dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Oct 16, 2024
1 parent 1a465cd commit c86eda0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: '3.12'
- name: set up node # we need node for for semantic release
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: '3.12'
- name: set tag
id: set-tag
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
- name: deploy to staging
run: |
queenbee
pollination dsl push pollination-utci-comfort-map --tag ${{needs.deploy.outputs.tag}} -e https://api.staging.pollination.cloud -src https://api.staging.pollination.cloud/registries
pollination dsl push pollination-utci-comfort-map --tag ${{needs.deploy.outputs.tag}} -e https://api.staging.pollination.solutions -src https://api.staging.pollination.solutions/registries
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_STAGING_LADYBUGBOT_TOKEN }}
Expand All @@ -71,7 +71,7 @@ jobs:
fetch-depth: 0
- name: rebase visualization branch
run: |
git config --global user.email "ci@pollination.cloud"
git config --global user.email "ci@pollination.solutions"
git config --global user.name "GitHub Actions"
git rebase origin/master
- name: install python viz dependencies
Expand All @@ -85,15 +85,15 @@ jobs:
TAG=$(echo "${TAG:?}-viz" | sed 's/[[:space:]]//g')
echo $TAG
queenbee
pollination dsl push pollination-utci-comfort-map --tag $TAG -e https://api.staging.pollination.cloud -src https://api.staging.pollination.cloud/registries --push-dependencies
pollination dsl push pollination-utci-comfort-map --tag $TAG -e https://api.staging.pollination.solutions -src https://api.staging.pollination.solutions/registries --push-dependencies
- name: install python dependencies for samples
run: pip install -r samples/requirements.txt
- name: run on staging
run: python samples/run_jobs.py
env:
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_STAGING_LADYBUGBOT_TOKEN }}
TAG: ${{ steps.set-tag.outputs.tag }}
HOST: https://api.staging.pollination.cloud
HOST: https://api.staging.pollination.solutions

deploy-to-production:
name: Deploy to Pollination Production
Expand All @@ -120,7 +120,7 @@ jobs:
- name: deploy to production
run: |
queenbee
pollination dsl push pollination-utci-comfort-map -e https://api.pollination.cloud -src https://api.pollination.cloud/registries --push-dependencies
pollination dsl push pollination-utci-comfort-map -e https://api.pollination.solutions -src https://api.pollination.solutions/registries --push-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QB_POLLINATION_TOKEN: ${{ secrets.POLLINATION_LADYBUGBOT_TOKEN }}
Expand All @@ -130,7 +130,7 @@ jobs:
fetch-depth: 0
- name: rebase visualization branch
run: |
git config --global user.email "ci@pollination.cloud"
git config --global user.email "ci@pollination.solutions"
git config --global user.name "GitHub Actions"
git rebase origin/production
- name: install python viz dependencies
Expand All @@ -144,4 +144,4 @@ jobs:
TAG=$(echo "${TAG:?}-viz" | sed 's/[[:space:]]//g')
echo $TAG
queenbee
pollination dsl push pollination-utci-comfort-map --tag $TAG -e https://api.pollination.cloud -src https://api.pollination.cloud/registries --push-dependencies
pollination dsl push pollination-utci-comfort-map --tag $TAG -e https://api.pollination.solutions -src https://api.pollination.solutions/registries --push-dependencies
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: '3.10'
- name: install python dependencies
run: |
pip install -r dev-requirements.txt
Expand Down
8 changes: 4 additions & 4 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==6.2.5
twine==3.4.1
wheel==0.36.2
setuptools==56.0.0
pytest==8.3.2
twine==5.1.1
wheel==0.44.0
setuptools==75.1.0

0 comments on commit c86eda0

Please sign in to comment.