Skip to content

Commit

Permalink
Merge pull request #42 from gridstatus/fix-version
Browse files Browse the repository at this point in the history
Fix Version Pinning
  • Loading branch information
WillKoehrsen authored Jun 18, 2024
2 parents 0f4e876 + d3a2159 commit 3f459e3
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 41 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.6.2 - June 18, 2024

- Sets capped version of Python to <4
- Upgrades numpy to a version that supports Python 3.12

## 0.6.1 - June 17, 2024

- Adds support for Python 3.12
Expand Down
2 changes: 1 addition & 1 deletion gridstatusio/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests
from termcolor import colored

__version__ = "0.6.1"
__version__ = "0.6.2"


def get_latest_version():
Expand Down
78 changes: 41 additions & 37 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gridstatusio"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "Python Client for GridStatus.io API"
classifiers = [
Expand All @@ -25,9 +25,9 @@ license = "LICENSE"
"Issue Tracker" = "https://github.com/kmax12/gridstatusio/issues"

[tool.poetry.dependencies]
python = ">=3.9, <3.13"
python = ">=3.9, <4"
requests = "^2.28.1"
numpy = "1.26.0"
numpy = "^1.26.4"
pandas = "^1.3.0"
tqdm = "^4.64.1"
termcolor = "1.1.0"
Expand Down

0 comments on commit 3f459e3

Please sign in to comment.