Skip to content

Commit

Permalink
Merge pull request #208 from NebraLtd/shawaj/require
Browse files Browse the repository at this point in the history
feat: bump flake8 and python version
  • Loading branch information
shawaj authored Jan 5, 2023
2 parents 510bb67 + 8d29a1d commit b4575a4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Fetch gateway-mfr-rs
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Fetch gateway-mfr-rs
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Install requirements
run: |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ requests==2.28.1
retry==0.9.2
base58==2.1.1
protobuf==4.21.12
packaging>=21.3
packaging>=22.0
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@

setup(
name='hm_pyhelper',
version='0.13.45',
version='0.13.46',
author="Nebra Ltd",
author_email="[email protected]",
description="Helium Python Helper",
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type="text/markdown",
url="https://github.com/NebraLtd/hm-pyhelper",
install_requires=[
'requests>=2.26.0',
'requests>=2.28.1',
'retry==0.9.2',
'base58==2.1.1',
'protobuf==3.20.3',
'packaging>=21.3'
'protobuf==4.21.12',
'packaging>=22.0'
],
project_urls={
"Bug Tracker": "https://github.com/NebraLtd/hm-pyhelper/issues",
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mock==5.0.0
pytest==7.2.0
flake8==5.0.4
flake8==6.0.0
responses==0.22.0

0 comments on commit b4575a4

Please sign in to comment.