Skip to content

Commit

Permalink
Merge pull request #116 from 444B/fix-logging-and-bump-deps
Browse files Browse the repository at this point in the history
Fix logging and bump deps
  • Loading branch information
444B authored Oct 31, 2024
2 parents 35377b4 + cf21b51 commit 4ed7c36
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ git checkout -b name_of_your_new_branch
> **IMPORTANT**: Start the name of your branch with "test/". Pushing on this branch will trigger a release to [TestPyPI](https://test.pypi.org/project/streamlit-analytics2/) where we can further verify that the code works as expected.
### 3. Install Python and pipenv
Ensure you have Python 3.9.x installed, then install pipenv:
Ensure you have Python 3.10.x installed, then install pipenv:
```sh
pip install --user pipenv
```

### 4. Create a Pipenv Environment
Set up your pipenv environment with Python at least python 3.9.
Set up your pipenv environment with Python at least python 3.10.
A higher version should be fine unless you are using cutting edge python expressions.
```sh
pipenv --python 3.9
pipenv --python 3.10
```

### 5. Install Dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: '3.9'
# python-version: '3.10'

# - name: Install Pipenv and dependencies
# run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'

- name: Install Pipenv and dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
streamlit = ">=1.37"
streamlit = ">=1.39"
altair = "*"
pandas = "*"
google-cloud-firestore = "*"
Expand All @@ -23,4 +23,4 @@ build = "*"
twine = "*"

[requires]
python_version = "3.9"
python_version = "3.10"
11 changes: 5 additions & 6 deletions Pipfile.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "streamlit_analytics2"
version = "0.8.6"
version = "0.8.7"
description = "Track & visualize user interactions with your streamlit app."
authors = [{ name = "444B", email = "[email protected]" }]
license = { file = "LICENSE" }
Expand All @@ -23,7 +23,7 @@ classifiers = [
"Intended Audience :: Developers",
"Development Status :: 4 - Beta"
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"streamlit >= 1.37.0",
"pandas",
Expand Down
2 changes: 1 addition & 1 deletion src/streamlit_analytics2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .main import counts, start_tracking, stop_tracking, track # noqa: F401

__version__ = "0.8.6"
__version__ = "0.8.7"

0 comments on commit 4ed7c36

Please sign in to comment.