Skip to content

Commit

Permalink
ci versions; bump min python;
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wrzr committed Feb 2, 2024
1 parent 4c368cc commit eba750a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 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.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.10", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,8 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
streamlit-version: ["1.25", "1.26", "1.27", "1.28", "1.29", "1.30", "1.31"]
python-version: ["3.8", "3.10", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -38,13 +37,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
streamlit-version: ["1.25", "1.27", "1.29", "1.31"]
python-version: ["3.8", "3.10", "3.12"]
streamlit-version: ["1.20", "1.25", "1.30", "1.31"]

steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_frontend
- uses: ./.github/actions/setup_backend
with:
python-version: ${{ matrix.python-version }}
streamlit-version: ${{ matrix.streamlit-version }}

- run: playwright install
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.7, !=3.9.7",
python_requires=">=3.8, !=3.9.7",
install_requires=[
"streamlit >= 0.63",
"streamlit >= 1.0",
],
extras_require={
"tests": [
Expand Down

0 comments on commit eba750a

Please sign in to comment.