Skip to content

Commit

Permalink
Merge pull request #106 from Undertone0809/feat-v1.9.0
Browse files Browse the repository at this point in the history
fix: package error
  • Loading branch information
Undertone0809 authored Oct 25, 2023
2 parents 841c10d + 673599a commit d98f1b0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: pip install -r requirements.txt
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setuptools.setup(
name="promptulate",
version="1.8.0",
version="1.8.1",
author="Zeeland",
author_email="[email protected]",
description="A powerful LLM Application development framework.",
Expand All @@ -36,7 +36,7 @@
packages=setuptools.find_packages(),
install_requires=[
"cushy-storage",
"dotenv~=1.0.0",
"python-dotenv~=1.0.0",
"pydantic~=1.10.0",
"requests",
"duckduckgo_search",
Expand Down

0 comments on commit d98f1b0

Please sign in to comment.