Skip to content

Commit

Permalink
Drop Python 3.7 support (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
slovdahl authored Jan 25, 2024
1 parent 378d46a commit 2cd6866
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ on:

jobs:
dockerhub:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: ${{ github.repository == 'smarkets/marge-bot' }} # Only run from main repo
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Dockerize
run: make dockerize
- name: Deploy to DockerHub
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand All @@ -41,7 +40,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/hiboxsystems/marge-bot"
keywords = ["merge request", "gitlab"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
ConfigArgParse = "^1.3"
maya = "^0.6.1"
PyYAML = "~5.3.1"
Expand Down

0 comments on commit 2cd6866

Please sign in to comment.