Skip to content

Commit

Permalink
solve version number error
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosFerLo committed Oct 18, 2023
1 parent e3b7c9b commit c6c9a8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: "3.10"
- name: Update version in setup.py
run: >-
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py
sed -i "s/{{VERSION_PLACEHOLDER}}/${{'0.0.0'}}/g" setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="synthetic-cognition",
version={{VERSION_PLACEHOLDER}},
version="{{VERSION_PLACEHOLDER}}",
description="Synthetic Cognition general inference architecture for language model agents DEMO",
packages=find_packages("."),
long_description="Synthetic Cognition general inference architecture for language model agents DEMO",
Expand Down

0 comments on commit c6c9a8f

Please sign in to comment.