Skip to content

Commit

Permalink
Merge pull request #114 from skalenetwork/beta
Browse files Browse the repository at this point in the history
2.2 stable (2.3 release)
  • Loading branch information
badrogger committed Feb 16, 2024
2 parents eecf293 + 891fdc5 commit ec89bac
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 16 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/issue_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Get linked issues
on:
pull_request:
types: [ edited, synchronize, opened, reopened ]

jobs:
check-linked-issues:
name: Check if pull request has linked issues
runs-on: ubuntu-latest
steps:
- name: Get issues
id: get-issues
uses: mondeja/pr-linked-issues-action@v2
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: PR has not linked issues
if: join(steps.get-issues.outputs.issues) == ''
run:
exit 1
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,14 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.11
- name: Install docker-compose and libs
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo apt-get update
sudo apt-get install -y libmysqlclient-dev build-essential
sudo apt-get install -y libmysqlclient-dev build-essential docker-compose
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.11

RUN mkdir app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.1
2.2.0
7 changes: 3 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pytest==6.1.2
pytest-cov==2.10.1
docker-compose==1.27.4
flake8==3.7.9
flake8==6.1.0
pytest==7.4.3
pytest-cov==4.1.0
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flask==2.0.2
Jinja2==3.0.3
uwsgi==2.0.19.1
requests==2.25.1
itsdangerous==2.0.1
Flask==3.0.0
Jinja2==3.1.2
uwsgi==2.0.23
requests==2.31.0
itsdangerous==2.1.2

0 comments on commit ec89bac

Please sign in to comment.