Skip to content

Commit

Permalink
Merge pull request #4 from jpwsutton/fix/setup-cfg
Browse files Browse the repository at this point in the history
Fix/setup cfg
  • Loading branch information
jpwsutton committed Jun 23, 2023
2 parents 79af8f5 + 6b23749 commit 96f3827
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m pip install -e ".[dev]"
- name: Version and package
run: |
pip wheel -w dist -e . --no-deps
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@f9ed8ba9ad06d20b1ebb6002ffb93050ed9a1951
with:
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=67.6.0", "wheel>=0.40.0", "setuptools_scm[toml]>=7.1.0"]
requires = ["setuptools>=68.0.0", "wheel>=0.40.0", "setuptools_scm[toml]>=7.1.0"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -15,7 +15,7 @@ authors = [
{name="James Sutton", email="james.sutton@uk.ibm.com"},
]
description = "IBM Generative AI is a Python library built on IBM's large language model REST interface."
readme = "README.MD"
readme = "README.md"
dependencies = [
"urllib3<2", # https://github.com/psf/requests/issues/6432
"requests>=2.31.0",
Expand All @@ -41,7 +41,8 @@ dev = [
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.10.0",
"setuptools-scm>=7.1.0",
"pytest-httpx>=0.22.0"
"pytest-httpx>=0.22.0",
"build>=0.10.0"
]
langchain = [
"langchain>=0.0.200"
Expand Down

0 comments on commit 96f3827

Please sign in to comment.