Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release rai-core-flask 0.7.6 #2566

Merged
merged 4 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/CI-rai_core_flask-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:
matrix:
operatingSystem:
[ubuntu-20.04, ubuntu-latest, macos-latest, windows-latest]
pythonVersion: ["3.7", "3.8", "3.9", "3.10", "3.11"]
pythonVersion: ["3.8", "3.9", "3.10", "3.11"]
exclude:
- operatingSystem: macos-latest
pythonVersion: "3.9"
- operatingSystem: ubuntu-20.04
pythonVersion: "3.7"
- operatingSystem: ubuntu-20.04
pythonVersion: "3.8"
- operatingSystem: ubuntu-20.04
Expand All @@ -45,13 +43,6 @@ jobs:
with:
python-version: ${{ matrix.pythonVersion }}

- if: ${{ matrix.pythonVersion == '3.7' }}
name: Setup tools for python lt 3.8
run: |
python -m pip install --upgrade "pip<=23.1.2"
pip install --upgrade setuptools
pip install --upgrade "pip-tools<=6.13.0"

- if: ${{ matrix.pythonVersion == '3.8' || matrix.pythonVersion == '3.9' || matrix.pythonVersion == '3.10' || matrix.pythonVersion == '3.11' }}
name: Setup tools for python gte 3.8
run: |
Expand Down
2 changes: 1 addition & 1 deletion rai_core_flask/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ flask-socketio
ipython<=7.16.3; python_version <= '3.6'
ipython>=7.31.1; python_version > '3.6'
greenlet>=1.1.2
gevent>=21.12.0
gevent>=21.12.0
2 changes: 1 addition & 1 deletion rai_core_flask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# The version must be incremented every time we push an update to pypi (but
# not before)
VERSION = "0.7.5"
VERSION = "0.7.6"

# supply contents of our README file as our package's long description
with open("README.md", "r") as fh:
Expand Down
Loading