Skip to content

Commit be3370f

Browse files
authored
Merge pull request #105 from botcity-dev/fix-numpy-version-0.branch
FIX: Updating requirements.txt with numpy version (0.branch)
2 parents 14745ca + 9510462 commit be3370f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- os: windows-latest
3535
browser: "firefox"
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
- name: Install libgl1
3939
if: runner.os == 'Linux'
4040
run: |
@@ -43,7 +43,7 @@ jobs:
4343
sudo apt install libgl1-mesa-dev libgconf-2-4 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm-dev libnss3-dev libxss-dev libasound2 -y
4444
4545
- name: Set up Python ${{ matrix.python-version }}
46-
uses: actions/setup-python@v2
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949

.github/workflows/linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
python-version: [3.7]
16+
python-version: [3.11]
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

.github/workflows/pypi_upload.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@master
11+
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
14-
- name: Set up Python 3.7
15-
uses: actions/setup-python@v1
14+
- name: Set up Python 3.11
15+
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.7
17+
python-version: "3.11"
1818
- name: Install pypa/build
1919
run: >-
2020
python -m
@@ -30,6 +30,6 @@ jobs:
3030
.
3131
- name: Publish distribution to PyPI
3232
if: startsWith(github.ref, 'refs/tags')
33-
uses: pypa/gh-action-pypi-publish@master
33+
uses: pypa/gh-action-pypi-publish@release/v1
3434
with:
3535
password: ${{ secrets.PYPI_API_TOKEN }}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
botcity-framework-base>=0.2.2
22
beautifulsoup4
33
msedge-selenium-tools==3.141.3
4-
numpy
4+
numpy<2
55
opencv-python
66
pillow
77
selenium==3.141

0 commit comments

Comments
 (0)