Skip to content

Commit

Permalink
Updated requirements versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Hossack committed May 30, 2024
1 parent ff8fbe5 commit 99c0185
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11.5
- name: Set up Python 3.10.14
uses: actions/setup-python@v1
with:
python-version: 3.11.5
python-version: 3.10.14
- name: Install pypa/build
run: >-
python -m
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11.5
- name: Set up Python 3.10.14
uses: actions/setup-python@v1
with:
python-version: 3.11.5
python-version: 3.10.14
- name: Install pypa/build
run: >-
python -m
Expand Down
6 changes: 6 additions & 0 deletions docs/source/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.

## [1.13.0] - 2024-05-30

### Fixed

- Updated package requirements

## [1.12.0] - 2023-10-16

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -- Project information

__version__ = '1.12.0'
__version__ = "1.13.0"

project = 'DashTools'
author = 'Andrew Hossack'
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ dash>=2.5.1
dash-bootstrap-components
Flask
gunicorn
packaging==21.3
pipreqs==0.4.12
packaging
pipreqs
pre-commit==2.16.0
pytest==6.2.5
pandas
Expand All @@ -13,4 +13,4 @@ visdcc==0.0.50
dash-mantine-components==0.12.0
dash-iconify==0.1.2
ruamel.yaml==0.17.21
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
setuptools
2 changes: 1 addition & 1 deletion src/dashtools/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Version in this file must match version for docs/source/version.py!

__version__ = '1.12.0'
__version__ = "1.13.0"

0 comments on commit 99c0185

Please sign in to comment.