Skip to content

Commit

Permalink
Release: v0.8.0 (#1406)
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman100 authored Jan 30, 2024
1 parent 67918ef commit 30889ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,20 @@
from setuptools import find_packages, setup


VERSION = "0.7.2.dev0"
VERSION = "0.8.0"

extras = {}
extras["quality"] = ["black ~= 22.0", "ruff>=0.0.241", "urllib3<=2.0.0"]
extras["docs_specific"] = ["hf-doc-builder"]
extras["dev"] = extras["quality"] + extras["docs_specific"]
extras["test"] = extras["dev"] + [
"pytest", "pytest-cov", "pytest-xdist", "parameterized", "datasets", "diffusers<0.21.0", "scipy"
"pytest",
"pytest-cov",
"pytest-xdist",
"parameterized",
"datasets",
"diffusers<0.21.0",
"scipy",
]

setup(
Expand Down
2 changes: 1 addition & 1 deletion src/peft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.7.2.dev0"
__version__ = "0.8.0"

from .auto import (
AutoPeftModel,
Expand Down

0 comments on commit 30889ef

Please sign in to comment.