Skip to content

Commit

Permalink
loosen dependency requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
EarningsCall committed May 27, 2024
1 parent 7660d4a commit 672059c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
3 changes: 1 addition & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Development



TODO: Add rye installation instructions.

### Saving Server-Side Responses for a Mocked Unit test

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pip install --upgrade earningscall

# Requirements

* Python 3.7+ (PyPy supported)
* Python 3.7+ (PyPI supported)


## Get Transcript for a Single Quarter
Expand Down
5 changes: 5 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# A list of things left to do for this project

* Allow user to set API Key
* If user is using "demo" API key, and user tries to get non-demo symbol, throw a nice error message

9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[project]
name = "earningscall"
version = "0.0.2"
version = "0.0.3"
description = "The EarningsCall Python library."
readme = "README.md"
authors = [
{name = "EarningsCall", email = "[email protected]"},
]
requires-python = ">= 3.8"
dependencies = [
"requests>=2.23",
"more_itertools>=10.2",
"dataclasses-json>=0.6.6",
"dataclasses>=0.6",
"dataclasses-json>=0.6.4",
"more_itertools>=10.0.0",
"requests>=2.30.0",
]

[project.urls]
Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ certifi==2024.2.2
# via requests
charset-normalizer==3.3.2
# via requests
dataclasses==0.6
# via earningscall
dataclasses-json==0.6.6
# via earningscall
idna==3.7
Expand Down
2 changes: 2 additions & 0 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ certifi==2024.2.2
# via requests
charset-normalizer==3.3.2
# via requests
dataclasses==0.6
# via earningscall
dataclasses-json==0.6.6
# via earningscall
idna==3.7
Expand Down

0 comments on commit 672059c

Please sign in to comment.