Skip to content

Commit

Permalink
Revert "Trying python 3.10 given pytest-dev/py#273"
Browse files Browse the repository at this point in the history
This reverts commit 6ea1493.
  • Loading branch information
Paul F Bugni committed Jan 14, 2025
1 parent 6ea1493 commit 0846dd6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.10
python-version: 3.11

- name: Install Python linting dependencies
run: pip install black flake8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
- name: Checkout git commit
uses: actions/checkout@v1

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.10
python-version: 3.11

- name: Install test runner
run: python3 -m pip install tox
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY . .
RUN npm run build

# -----------------------------------------------------------------------------
FROM python:3.10 as backend
FROM python:3.11 as backend

RUN mkdir /opt/cosri-patientsearch
WORKDIR /opt/cosri-patientsearch
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ All views require Keycloak authentication. Keycloak roles determine authorizati
1) `git clone <this repository>`
2) `cp client_secrets.json.default client_secrets.json` # Edit to fit
3) `cp patientsearch.env.default patientsearch.env` # Edit to fit
4) `mkvirtualenv patientsearch` # Python 3.10
4) `mkvirtualenv patientsearch` # Python 3.11
5) `pip install nodeenv`
6) `nodeenv --python-virtualenv`
7) `pip install -e .`
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py310
envlist = py311
skipdist = True

[testenv]
Expand Down

0 comments on commit 0846dd6

Please sign in to comment.