Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.11', '3.12', '3.13' ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]

steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 8 additions & 4 deletions Dockerfile.qa
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:22.04

ARG DEBIAN_FRONTEND=noninteractive
ARG PYTHON_VERSION
Expand All @@ -22,9 +22,10 @@ RUN if [ $PYTHON_VERSION = '2.7' ] ; then \
fi

# Install python development
RUN apt install -y \
python$PYTHON_VERSION-dev \
python3-pip
RUN apt-get update && \
apt-get install -y \
python$PYTHON_VERSION-dev \
python3-pip

# Install curl
RUN apt-get install -y curl
Expand All @@ -34,6 +35,9 @@ RUN if [ $PYTHON_VERSION = '3.7' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ;\
elif [ $PYTHON_VERSION = '3.6' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ;\
elif [ $PYTHON_VERSION = '3.9' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
elif [ $PYTHON_VERSION = '3.10' ] ; then \
apt install -y python$PYTHON_VERSION-distutils python3-distutils-extra python3-apt --reinstall ; \
curl -sS https://bootstrap.pypa.io/get-pip.py | python$PYTHON_VERSION ; \
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ docker-qa: | docker-qa-build

docker-qa-build: Dockerfile.qa requirements.txt requirements-dev.txt
docker build \
--pull \
--tag $(QA_CONTAINER) \
--build-arg PYTHON_VERSION=$(PYTHON_VERSION) \
--file $< .
Expand All @@ -55,5 +56,6 @@ docker-fmt: docker-qa-build

docker-atlassian-standalone: Dockerfile.standalone
docker build \
--pull \
--tag $(ATLASSIAN_SDK) \
--file $< .
1 change: 1 addition & 0 deletions atlassian/service_desk.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def get_request_types(self, service_desk_id):
f"rest/servicedeskapi/servicedesk/{service_desk_id}/requesttype",
headers=self.experimental_headers,
)

def get_request_type(self, service_desk_id, request_type_id):
"""
Fetches detailed information about a specific request type within a service desk.
Expand Down
Loading