Skip to content

Commit

Permalink
Updates for python 3.11 (#111)
Browse files Browse the repository at this point in the history
* test on py 3.11

* changelog update

* old base image [skip ci]
  • Loading branch information
leslievandemark authored Jan 23, 2024
1 parent ff684a8 commit 5edf68d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ jobs:
command: |
source /usr/local/share/virtualenvs/tap-jira/bin/activate
source /usr/local/share/virtualenvs/dev_env.sh
pip install nose coverage
nosetests --with-coverage --cover-erase --cover-package=tap_jira --cover-html-dir=htmlcov tests/unittests
coverage html
pip install nose2 parameterized nose2[coverage_plugin]>=0.6.5
nose2 --with-coverage -v -s tests/unittests
- store_test_results:
path: test_output/report.xml
- store_artifacts:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## [v2.2.0]
* Updates to run on python 3.11.7 [#111](https://github.com/singer-io/tap-jira/pull/111)
## [v2.1.5]
* Skipped the record for out of range date values [#87](https://github.com/singer-io/tap-jira/pull/87)
## [v2.1.4]
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
from setuptools import setup, find_packages

setup(name="tap-jira",
version="2.1.5",
version="2.2.0",
description="Singer.io tap for extracting data from the Jira API",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_jira"],
install_requires=[
"singer-python==5.12.1",
"requests==2.20.0",
"singer-python==6.0.0",
"requests==2.31.0",
"dateparser"
],
extras_require={
'dev': [
'pylint',
'nose',
'nose2',
'ipdb'
]
},
Expand Down

0 comments on commit 5edf68d

Please sign in to comment.