Skip to content

Commit

Permalink
Merge pull request #105 from botcity-dev/fix-numpy-version-0.branch
Browse files Browse the repository at this point in the history
FIX: Updating requirements.txt with numpy version (0.branch)
  • Loading branch information
hhslepicka authored Jun 17, 2024
2 parents 14745ca + 9510462 commit be3370f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- os: windows-latest
browser: "firefox"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install libgl1
if: runner.os == 'Linux'
run: |
Expand All @@ -43,7 +43,7 @@ jobs:
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
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: "3.11"
- name: Install pypa/build
run: >-
python -m
Expand All @@ -30,6 +30,6 @@ jobs:
.
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
botcity-framework-base>=0.2.2
beautifulsoup4
msedge-selenium-tools==3.141.3
numpy
numpy<2
opencv-python
pillow
selenium==3.141
Expand Down

0 comments on commit be3370f

Please sign in to comment.