Skip to content

Commit

Permalink
chore: update numpy to 2.1.3 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich authored Nov 30, 2024
1 parent eaee07c commit 85707ad
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 48 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
echo "${{ secrets.LAUNCHPAD_CREDENTIALS }}" > ~/.local/share/snapcraft/provider/launchpad/credentials
- uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
97 changes: 58 additions & 39 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rclip"
version = "1.11.0"
version = "1.11.1a3"
description = "AI-Powered Command-Line Photo Search Tool"
authors = ["Yurij Mikhalevich <yurij@mikhalevi.ch>"]
license = "MIT"
Expand All @@ -19,7 +19,7 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.10 <3.13"
numpy = "^1.26.4"
numpy = "^2.1.3"
open_clip_torch = "^2.24.0"
pillow = "^10.3.0"
requests = "~=2.32"
Expand Down
2 changes: 1 addition & 1 deletion release-utils/appimage/appimage-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ AppDir:
key_url: 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xba6932366a755776'

include:
- curl
- libffi7
- libpython3.10-minimal
- libpython3.10-stdlib
- python3.10
- python3.10-distutils
- python3.10-minimal
- python3-pip
exclude: []

after_bundle: >
Expand Down
1 change: 1 addition & 0 deletions release-utils/appimage/appimage_after_bundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -e
PYTHONHOME=$APPDIR/usr \
PYTHONPATH=$APPDIR/usr/lib/python3.10/site-packages:$APPDIR/usr/lib/python3.10 \
LD_LIBRARY_PATH=$APPDIR/usr/lib/x86_64-linux-gnu \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 &&
python3.10 -m pip install poetry==1.8.4 &&
python3.10 -m pip install --upgrade --isolated --no-input --ignore-installed --prefix="$APPDIR/usr" certifi setuptools wheel &&
python3.10 -m poetry build &&
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: |
For a detailed demonstration, watch the video: https://www.youtube.com/watch?v=tAJHXOkHidw.
You can use another image as a query by passing a file path or even an URL to the image file to **rclip** and combine multiple queries. Check out the project's README on GitHub for more usage examples: https://github.com/yurijmikhalevich/rclip#readme.
version: 1.11.0
version: 1.11.1a3
website: https://github.com/yurijmikhalevich/rclip
contact: yurij@mikhalevi.ch
passthrough:
Expand All @@ -31,7 +31,7 @@ apps:
parts:
rclip:
plugin: python
source: ./snap/local/rclip-1.11.0.tar.gz
source: ./snap/local/rclip-1.11.1a3.tar.gz
build-packages:
- python3-pip
build-environment:
Expand Down

0 comments on commit 85707ad

Please sign in to comment.