Skip to content

Commit e3bc96c

Browse files
authored
fix: update dependencies (#246)
* fix: update dependencies * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs * fix: update versions and fix minor bugs
1 parent 8bc568e commit e3bc96c

27 files changed

+2154
-1617
lines changed

.github/workflows/python-package.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8, 3.9]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Set up Python ${{ matrix.python-version }}
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
26-
python -m pip install --upgrade pip
26+
pip install --upgrade pip
2727
pip install poetry
2828
poetry install --extras "all" --no-interaction --no-root
2929
env:
@@ -42,9 +42,9 @@ jobs:
4242
- name: Lint with pylint
4343
run: |
4444
pylint --rcfile=pylintrc pyms
45-
- name: Security safety
46-
run: |
47-
safety check
45+
# - name: Security safety
46+
# run: |
47+
# safety check
4848
- name: Security bandit
4949
run: |
5050
bandit -r pyms/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ microservices with Python which handles cross-cutting concerns:
1919
- Metrics
2020
- Distributed tracing
2121

22-
PyMS is powered by [Flask](https://flask.palletsprojects.com/en/1.1.x/), [Connexion](https://github.com/zalando/connexion)
22+
PyMS is powered by [Flask](https://flask.palletsprojects.com/en/1.1.x/), [Connexion](https://github.com/spec-first/connexion)
2323
and [Opentracing](https://opentracing.io/).
2424

2525
Get started with [Installation](https://python-microservices.github.io/installation/)

0 commit comments

Comments
 (0)