Skip to content

Commit

Permalink
Merge pull request #14 from fiddler-labs/infra/relax_python_version
Browse files Browse the repository at this point in the history
Relax python version
  • Loading branch information
iterix authored May 24, 2023
2 parents 7db14c3 + c07531b commit 3a41549
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.8","3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion auditor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""module entrypoint"""
__version__ = '0.0.1.rc2'
__version__ = '0.0.1.rc3'
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "fiddler-auditor"
version = "0.0.1.rc2"
version = "0.0.1.rc3"
authors = [
{ name="Fiddler Labs", email="[email protected]" },
]
description = "Auditing large language models made easy."
readme = "README.md"
requires-python = ">=3.10.1,<4.0"
requires-python = ">=3.8.1,<4.0"


classifiers = [
Expand Down

0 comments on commit 3a41549

Please sign in to comment.