Skip to content

Commit 8d9039f

Browse files
author
MinjiK
committed
change workflow
1 parent 9eeacaa commit 8d9039f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
python -m pip install --ignore-installed sphinx==3.4.1 tox==3.20.0 sphinx_rtd_theme==0.5.2 "Jinja2<3.1"
23+
python -m pip install -r requirements.txt
2424
- name: Test with tox
2525
run: |
2626
tox -e py

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install --ignore-installed sphinx==3.4.1 tox==3.20.0 sphinx_rtd_theme==0.5.2 "Jinja2<3.1"
24+
python -m pip install -r requirements.txt
2525
- name: Test with tox
2626
run: |
2727
tox -e py

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ application <https://developers.amadeus.com/my-apps/>`__.
4141
response = amadeus.shopping.flight_offers_search.get(
4242
originLocationCode='MAD',
4343
destinationLocationCode='ATH',
44-
departureDate='2022-11-01',
44+
departureDate='2024-11-01',
4545
adults=1)
4646
print(response.data)
4747
except ResponseError as error:

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
flake8==3.8.0
22
flake8-quotes==2.1.1
33
tox==3.20.0
4-
sphinx==7.2.6
5-
sphinx-rtd-theme==2.0.0
4+
sphinx==5.0.0
5+
sphinx-rtd-theme==0.5.2
66
pytest==7.2.0
77
pytest-cov==4.0.0
8+
Jinja2<3.1

0 commit comments

Comments
 (0)