Skip to content

Commit

Permalink
lowers python base requirements (#23)
Browse files Browse the repository at this point in the history
* lowers python base requirements

* adjuts gh workflow, tested against poetry env switch to 3.9.18
  • Loading branch information
coreyjs authored Feb 6, 2024
1 parent dc1bc6d commit cfb15b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# reference the matrixe python version here.
- uses: actions/setup-python@v2
with:
python-version: 3.10.6
python-version: 3.9.18

# Cache the installation of Poetry itself, e.g. the next step. This prevents the workflow
# from installing Poetry every time, which can be slow. Note the use of the Poetry version
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.9.18
2 changes: 1 addition & 1 deletion nhlpy/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Should this be driven by the main pyproject.toml file? yes, is it super convoluted? yes, can it wait? sure

__version__ = "2.1.5"
__version__ = "2.2.0"
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 = "poetry.core.masonry.api"

[tool.poetry]
name = "nhl-api-py"
version = "2.1.5"
version = "2.2.0"
description = "NHL API. For standings, team stats, outcomes, player information. Contains each individual API endpoint as well as convience methods for easy data loading in Pandas or any ML applications."
authors = ["Corey Schaf <[email protected]>"]
readme = "README.md"
Expand All @@ -30,7 +30,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.9"
httpx = "*"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit cfb15b2

Please sign in to comment.