Skip to content

Commit

Permalink
bump versions;
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wrzr committed Oct 28, 2024
1 parent bb2bda6 commit 8807b48
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
8 changes: 7 additions & 1 deletion .github/actions/setup_backend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ runs:
shell: bash --login -eo pipefail {0}
run: python -c "import sys; print(sys.version)"

- run: pip install streamlit==${{ inputs.streamlit-version }}
- name: Install Streamlit
run: |
if [[ ${{ inputs.streamlit-version }} == 'latest' ]]; then
pip install streamlit
else
pip install streamlit==${{ inputs.streamlit-version }}
fi
shell: bash --login -eo pipefail {0}

- run: pip install -e ".[dev,tests]"
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
python-version: ["3.9", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
python-version: ["3.9", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -37,9 +37,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
# TODO: test with latest streamlit version
streamlit-version: ["1.25", "1.30", "1.31", "1.36"]
python-version: ["3.9", "3.11", "3.12"]
streamlit-version: ["1.25", "1.30", "1.31", "1.36", "latest"]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ README.local.md
.streamlit
venv*
tests/screenshots/*.png
tests_local
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.1.18] - 2024-10-28

- added `submit_function` that is called on a new submission
- removed support for python `3.8`
- TODO:

## [0.1.17] - 2024-09-15

- `clear_on_submit` now also resets the `default_options`
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="streamlit-searchbox",
version="0.1.17",
version="0.1.18",
author="m-wrzr",
description="Autocomplete Searchbox",
long_description="Streamlit searchbox that dynamically updates "
Expand All @@ -12,7 +12,7 @@
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.8, !=3.9.7",
python_requires=">=3.9, !=3.9.7",
install_requires=[
# version >1.37 reruns can lead to constant iFrame resets
# version 1.35/1.36 also have reset issues but less frequent
Expand Down
4 changes: 2 additions & 2 deletions streamlit_searchbox/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion streamlit_searchbox/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamlit_searchbox",
"version": "0.1.17",
"version": "0.1.18",
"private": true,
"dependencies": {
"react": "^16.13.1",
Expand Down

0 comments on commit 8807b48

Please sign in to comment.