Skip to content

Commit 3837cef

Browse files
committed
Test
1 parent b4f6083 commit 3837cef

File tree

5 files changed

+30
-21
lines changed

5 files changed

+30
-21
lines changed

.github/workflows/python-package-daily.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,18 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
18+
python-version: [3.9, '3.10', '3.11', '3.12']
1919

2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v2
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
- name: Upgrade setuptools for Python 3.12
27+
if: matrix.python-version == '3.12'
28+
run: |
29+
python -m pip install --upgrade pip setuptools
2630
- name: Install dependencies
2731
run: |
2832
python -m pip install --upgrade pip wheel

.github/workflows/python-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
19+
python-version: [3.9, '3.10', '3.11', '3.12']
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: ${{ matrix.python-version }}
27+
- name: Upgrade setuptools for Python 3.12
28+
if: matrix.python-version == '3.12'
29+
run: |
30+
python -m pip install --upgrade pip setuptools
2731
- name: Install dependencies
2832
run: |
2933
python -m pip install --upgrade pip wheel

dev-requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --no-annotate dev-requirements.in
66
#
77
-e file:.
8-
aiohttp==3.8.3
8+
aiohappyeyeballs==2.6.1
9+
aiohttp==3.10.5
910
aiosignal==1.2.0
1011
appdirs==1.4.4
1112
astroid==2.12.12
12-
async-timeout==4.0.2
1313
attrs==22.1.0
1414
backoff==2.2.1
1515
beautifulsoup4==4.11.1
@@ -26,8 +26,8 @@ dill==0.3.6
2626
distlib==0.3.5
2727
filelock==3.8.0
2828
freezegun==1.2.2
29-
frozenlist==1.3.1
30-
greenlet==1.1.3.post0
29+
frozenlist==1.7.0
30+
greenlet==3.2.3
3131
identify==2.5.3
3232
idna==3.3
3333
iniconfig==1.1.1
@@ -39,7 +39,7 @@ marshmallow==3.17.0
3939
mccabe==0.7.0
4040
multidict==6.0.2
4141
nodeenv==1.7.0
42-
numpy==1.23.1
42+
numpy==1.26.4
4343
packaging==21.3
4444
pandas==1.4.3
4545
pep517==0.13.0
@@ -60,7 +60,7 @@ pytest-mock==3.8.2
6060
python-dateutil==2.8.2
6161
python-graphql-client==0.4.3
6262
pytz==2022.2
63-
pyyaml==6.0
63+
pyyaml==6.0.1
6464
requests==2.27.1
6565
requests-mock==1.9.3
6666
rich==12.5.1
@@ -79,7 +79,7 @@ wcwidth==0.2.5
7979
websockets==10.3
8080
wheel==0.37.1
8181
wrapt==1.14.1
82-
yarl==1.8.1
82+
yarl==1.9.11
8383

8484
# The following packages are considered to be unsafe in a requirements file:
8585
# pip

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
55
# pip-compile --no-annotate
66
#
77
-e file:.
8-
aiohttp==3.8.3
8+
aiohappyeyeballs==2.6.1
9+
aiohttp==3.10.5
910
aiosignal==1.2.0
1011
appdirs==1.4.4
11-
async-timeout==4.0.2
1212
attrs==22.1.0
1313
backoff==2.2.1
1414
beautifulsoup4==4.11.1
@@ -17,14 +17,14 @@ charset-normalizer==2.0.12
1717
click==8.1.2
1818
commonmark==0.9.1
1919
cython==0.29.28
20-
frozenlist==1.3.1
21-
greenlet==1.1.3.post0
20+
frozenlist==1.7.0
21+
greenlet==3.2.3
2222
idna==3.3
2323
jinja2==3.1.1
2424
markupsafe==2.1.1
2525
marshmallow==3.17.0
2626
multidict==6.0.2
27-
numpy==1.22.3
27+
numpy==1.26.4
2828
packaging==21.3
2929
pandas==1.4.2
3030
prison==0.2.1
@@ -34,7 +34,7 @@ pyparsing==3.0.9
3434
python-dateutil==2.8.2
3535
python-graphql-client==0.4.3
3636
pytz==2022.1
37-
pyyaml==6.0
37+
pyyaml==6.0.1
3838
requests==2.27.1
3939
rich==12.3.0
4040
six==1.16.0

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ package_dir =
5656
install_requires =
5757
importlib-metadata; python_version<"3.8"
5858
Cython>=0.29.26
59-
PyYAML>=6.0
59+
PyYAML>=6.0.1
6060
appdirs>=1.4.4
6161
backoff>=1.10.0
6262
beautifulsoup4>=4.10.0
6363
click>=8.0.3
6464
jinja2>=3.0.3
6565
marshmallow>=3.17.0
66-
numpy>=1.21.5
66+
numpy>=1.26.4
6767
pandas>=1.3.5
6868
prison>=0.2.1
6969
prompt-toolkit>=3.0.24
@@ -76,8 +76,9 @@ install_requires =
7676
tabulate>=0.8.9
7777
typing-extensions>=4.0.1
7878
yarl>=1.7.2
79-
greenlet>=1.1.3 # required for Python 3.11
80-
aiohttp>=3.8.3
79+
greenlet>=3.1.1
80+
aiohttp>=3.9.5
81+
frozenlist>=1.4.1
8182

8283
[options.packages.find]
8384
where = src

0 commit comments

Comments
 (0)