brynq-sdk-jira 1.1.2__tar.gz → 1.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_jira
3
- Version: 1.1.2
3
+ Version: 1.1.4
4
4
  Summary: JIRA wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -0,0 +1,2 @@
1
+ from brynq_sdk_jira.brynq_sdk.brynq_sdk_jira.jira import Jira
2
+ from brynq_sdk_jira.brynq_sdk.brynq_sdk_jira.tempo import Tempo
@@ -35,7 +35,7 @@ class Tempo(BrynQ):
35
35
 
36
36
  while not got_all_results:
37
37
  loop_parameters = parameters | {"limit": 1000, "offset": 1000 * no_of_loops}
38
- response = requests.get('https://api.tempo.io/core/3/worklogs', headers=self.headers, params=loop_parameters)
38
+ response = requests.get('https://api.tempo.io/4/worklogs', headers=self.headers, params=loop_parameters)
39
39
  if response.status_code == 200:
40
40
  response_json = response.json()
41
41
  no_of_loops += 1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-jira
3
- Version: 1.1.2
3
+ Version: 1.1.4
4
4
  Summary: JIRA wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,7 +1,7 @@
1
1
  setup.py
2
- brynq_sdk_jira/__init__.py
3
- brynq_sdk_jira/jira.py
4
- brynq_sdk_jira/tempo.py
2
+ brynq_sdk/brynq_sdk_jira/__init__.py
3
+ brynq_sdk/brynq_sdk_jira/jira.py
4
+ brynq_sdk/brynq_sdk_jira/tempo.py
5
5
  brynq_sdk_jira.egg-info/PKG-INFO
6
6
  brynq_sdk_jira.egg-info/SOURCES.txt
7
7
  brynq_sdk_jira.egg-info/dependency_links.txt
@@ -1,3 +1,3 @@
1
- brynq-sdk-brynq>=2
1
+ brynq-sdk-brynq<2,>=1
2
2
  pandas<3,>=1
3
3
  requests<=3,>=2
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_jira',
5
- version='1.1.2',
5
+ version='1.1.4',
6
6
  description='JIRA wrapper from BrynQ',
7
7
  long_description='JIRA wrapper from BrynQ',
8
8
  author='BrynQ',
@@ -10,7 +10,7 @@ setup(
10
10
  packages=find_namespace_packages(include=['brynq_sdk*']),
11
11
  license='BrynQ License',
12
12
  install_requires=[
13
- 'brynq-sdk-brynq>=2',
13
+ 'brynq-sdk-brynq>=1,<2',
14
14
  'pandas>=1,<3',
15
15
  'requests>=2,<=3'
16
16
  ],
@@ -1,2 +0,0 @@
1
- from .jira import Jira
2
- from .tempo import Tempo
@@ -1 +0,0 @@
1
- brynq_sdk_jira
File without changes