Skip to content

Commit 9132ddc

Browse files
authored
Merge pull request #55 from DahanDv/bump-dependencies
closes #53 dependencies bump
2 parents 6e74575 + 3c3fba8 commit 9132ddc

File tree

4 files changed

+19
-40
lines changed

4 files changed

+19
-40
lines changed

.github/workflows/unit.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.7', '3.8', '3.9.18', '3.10', '3.11', '3.12.0']
11-
steps:
12-
- name: Clone repository
13-
uses: actions/checkout@v3
14-
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v4
16-
with:
17-
python-version: ${{ matrix.python-version }}
18-
- name: Install dependencies
19-
run: pip install -r requirements/test.txt
20-
- name: Run unit tests
21-
run: python -m tests -v
22-
23-
# due to error: "The version '3.6' with architecture 'x64' was not found for Ubuntu 22.04."
24-
# test for python 3.6 is run on ubuntu 20.04
25-
unit-3_6: # can't use 3.6 as job name
26-
runs-on: ubuntu-20.04
27-
strategy:
28-
matrix:
29-
python-version: ['3.6']
10+
python-version: ['3.8', '3.9.18', '3.10', '3.11', '3.12.0']
3011
steps:
3112
- name: Clone repository
3213
uses: actions/checkout@v3
@@ -43,7 +24,7 @@ jobs:
4324
runs-on: ubuntu-latest
4425
strategy:
4526
matrix:
46-
python-version: ['3.7']
27+
python-version: ['3.8']
4728
steps:
4829
- name: Clone repository
4930
uses: actions/checkout@v3

requirements/base.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
certifi==2023.7.22
2-
chardet==4.0.0
3-
idna==3.2
4-
requests==2.26.0
5-
urllib3==1.26.6
6-
isort~=5.9
7-
pre-commit~=2.13.0
1+
certifi==2023.11.17
2+
chardet==5.2.0
3+
idna==3.6
4+
requests==2.31.1
5+
urllib3==2.1.0
6+
isort~=5.13.1
7+
pre-commit~=3.5.0

requirements/test.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
attrs==21.2.0
2-
certifi==2023.7.22
3-
chardet==4.0.0
4-
idna==3.2
5-
requests==2.26.0
6-
urllib3==1.26.6
7-
coverage==5.5
8-
hypothesis==6.14.3
9-
flake8==5.0.4
1+
attrs==23.1.0
2+
certifi==2023.11.17
3+
chardet==5.2.0
4+
idna==3.6
5+
requests==2.31.0
6+
urllib3==2.1.0
7+
coverage==7.3.2
8+
hypothesis==6.92.0
9+
flake8==6.1.0

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme_text():
99
setuptools.setup(
1010
name='pokebase',
1111
packages=['pokebase'],
12-
version='1.3.1',
12+
version='1.4.0',
1313
description='A Python wrapper for the friendly PokeAPI database',
1414
long_description=readme_text(),
1515
author='Greg Hilmes',
@@ -20,8 +20,6 @@ def readme_text():
2020
license='BSD License',
2121
classifiers=[
2222
'License :: OSI Approved :: BSD License',
23-
'Programming Language :: Python :: 3.6',
24-
'Programming Language :: Python :: 3.7',
2523
'Programming Language :: Python :: 3.8',
2624
'Programming Language :: Python :: 3.9',
2725
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)