Skip to content

Commit

Permalink
Merge branch 'release/3.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatologist committed Nov 27, 2023
2 parents 3fcc84a + cdb8094 commit c8bb20f
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 77 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout Latest Commit
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate changelog
uses: charmixer/auto-changelog-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4.1.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4.1.0
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
max-parallel: 4
matrix:
python-version: [3.10.13]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.1.0
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
max-parallel: 4
matrix:
python-version: [3.10.13]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.1.0
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [3.2.0](https://github.com/dermatologist/fhiry/tree/3.2.0) (2023-11-20)

[Full Changelog](https://github.com/dermatologist/fhiry/compare/3.1.0...3.2.0)

## [3.1.0](https://github.com/dermatologist/fhiry/tree/3.1.0) (2023-11-14)

[Full Changelog](https://github.com/dermatologist/fhiry/compare/3.0.0...3.1.0)
Expand Down
37 changes: 0 additions & 37 deletions docs/fhiry.rst

This file was deleted.

20 changes: 0 additions & 20 deletions docs/index.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/license.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/modules.rst

This file was deleted.

11 changes: 11 additions & 0 deletions t_install.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from fhiry.fhirsearch import Fhirsearch

fs = Fhirsearch(fhir_base_url = "http://hapi.fhir.org/fhir/baseR4")

my_fhir_search_parameters = {
"code": "http://snomed.info/sct|39065001",
}

df = fs.search(resource_type = "Condition", search_parameters = my_fhir_search_parameters)

print(df.info())
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[tox]
minversion = 3.15
envlist = default
envlist = default, clean, build, docs, doctests


[testenv]
Expand Down Expand Up @@ -71,3 +71,11 @@ deps = twine
commands =
python -m twine check dist/*
python -m twine upload {posargs:--repository testpypi} dist/*

[testenv:integration]
setenv = TOXINIDIR = {toxinidir}
deps =
-rrequirements.txt
-rdev-requirements.txt
commands =
python t_install.py

0 comments on commit c8bb20f

Please sign in to comment.