earningscall 0.0.12__tar.gz → 0.0.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {earningscall-0.0.12 → earningscall-0.0.13}/.github/workflows/release.yml +4 -4
  2. {earningscall-0.0.12 → earningscall-0.0.13}/.github/workflows/test.yml +9 -4
  3. {earningscall-0.0.12 → earningscall-0.0.13}/PKG-INFO +2 -3
  4. {earningscall-0.0.12 → earningscall-0.0.13}/README.md +1 -2
  5. {earningscall-0.0.12 → earningscall-0.0.13}/hatch.toml +2 -1
  6. {earningscall-0.0.12 → earningscall-0.0.13}/pyproject.toml +1 -1
  7. {earningscall-0.0.12 → earningscall-0.0.13}/.gitignore +0 -0
  8. {earningscall-0.0.12 → earningscall-0.0.13}/.python-version +0 -0
  9. {earningscall-0.0.12 → earningscall-0.0.13}/CHANGELOG.md +0 -0
  10. {earningscall-0.0.12 → earningscall-0.0.13}/DEVELOPMENT.md +0 -0
  11. {earningscall-0.0.12 → earningscall-0.0.13}/LICENSE +0 -0
  12. {earningscall-0.0.12 → earningscall-0.0.13}/TODO.md +0 -0
  13. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/__init__.py +0 -0
  14. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/api.py +0 -0
  15. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/company.py +0 -0
  16. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/errors.py +0 -0
  17. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/event.py +0 -0
  18. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/exports.py +0 -0
  19. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/sectors.py +0 -0
  20. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/symbols.py +0 -0
  21. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/transcript.py +0 -0
  22. {earningscall-0.0.12 → earningscall-0.0.13}/earningscall/utils.py +0 -0
  23. {earningscall-0.0.12 → earningscall-0.0.13}/scripts/get_all_company_transcripts.py +0 -0
  24. {earningscall-0.0.12 → earningscall-0.0.13}/scripts/get_single_transcript.py +0 -0
  25. {earningscall-0.0.12 → earningscall-0.0.13}/scripts/list_companies.py +0 -0
  26. {earningscall-0.0.12 → earningscall-0.0.13}/setup.cfg +0 -0
  27. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/demo-symbols-v2-alpha.yaml +0 -0
  28. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/demo-symbols-v2.yaml +0 -0
  29. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/msft-transcript-response.yaml +0 -0
  30. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols-v2.yaml +0 -0
  31. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols.txt +0 -0
  32. {earningscall-0.0.12 → earningscall-0.0.13}/tests/data/symbols.yaml +0 -0
  33. {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_earnings_event.py +0 -0
  34. {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_get_transcript.py +0 -0
  35. {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_helper.py +0 -0
  36. {earningscall-0.0.12 → earningscall-0.0.13}/tests/test_symbols.py +0 -0
@@ -34,7 +34,7 @@ jobs:
34
34
  - name: Build a binary wheel and sdist
35
35
  run: python -m build
36
36
  - name: Store the distribution packages
37
- uses: actions/upload-artifact@v3
37
+ uses: actions/upload-artifact@v4
38
38
  with:
39
39
  name: python-package-distributions
40
40
  path: dist/
@@ -55,7 +55,7 @@ jobs:
55
55
 
56
56
  steps:
57
57
  - name: Download all the dists
58
- uses: actions/download-artifact@v3
58
+ uses: actions/download-artifact@v4
59
59
  with:
60
60
  name: python-package-distributions
61
61
  path: dist/
@@ -76,7 +76,7 @@ jobs:
76
76
 
77
77
  steps:
78
78
  - name: Download all the dists
79
- uses: actions/download-artifact@v3
79
+ uses: actions/download-artifact@v4
80
80
  with:
81
81
  name: python-package-distributions
82
82
  path: dist/
@@ -122,7 +122,7 @@ jobs:
122
122
  #
123
123
  # steps:
124
124
  # - name: Download all the dists
125
- # uses: actions/download-artifact@v3
125
+ # uses: actions/download-artifact@v4
126
126
  # with:
127
127
  # name: python-package-distributions
128
128
  # path: dist/
@@ -27,10 +27,10 @@ jobs:
27
27
  python-version: ['3.9']
28
28
 
29
29
  steps:
30
- - uses: actions/checkout@v3
30
+ - uses: actions/checkout@v4
31
31
 
32
32
  - name: Set up Python ${{ matrix.python-version }}
33
- uses: actions/setup-python@v4
33
+ uses: actions/setup-python@v5
34
34
  with:
35
35
  python-version: ${{ matrix.python-version }}
36
36
 
@@ -43,16 +43,21 @@ jobs:
43
43
 
44
44
  - name: Run tests and track code coverage
45
45
  run: hatch run cov
46
+ - if: matrix.python-version == '3.9' && runner.os == 'Linux'
47
+ name: Publish Coverage to Coveralls
48
+ run: hatch run coveralls
49
+ env:
50
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
46
51
 
47
52
  run-container-matrix:
48
53
  name: Container matrix on Linux
49
54
  runs-on: ubuntu-latest
50
55
 
51
56
  steps:
52
- - uses: actions/checkout@v3
57
+ - uses: actions/checkout@v4
53
58
 
54
59
  - name: Set up Python 3.10
55
- uses: actions/setup-python@v4
60
+ uses: actions/setup-python@v5
56
61
  with:
57
62
  python-version: '3.10'
58
63
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: earningscall
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: The EarningsCall Python library.
5
5
  Project-URL: Homepage, https://earningscall.biz
6
6
  Project-URL: Documentation, https://github.com/EarningsCall/earningscall-python
@@ -59,7 +59,7 @@ pip install --upgrade earningscall
59
59
 
60
60
  # Requirements
61
61
 
62
- * Python 3.8+ (PyPI supported)
62
+ * Python 3.8+
63
63
 
64
64
  ## Get Transcript for a Single Quarter
65
65
 
@@ -150,4 +150,3 @@ from earningscall import get_sp500_companies
150
150
  for company in get_sp500_companies():
151
151
  print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
152
152
  ```
153
-
@@ -19,7 +19,7 @@ pip install --upgrade earningscall
19
19
 
20
20
  # Requirements
21
21
 
22
- * Python 3.8+ (PyPI supported)
22
+ * Python 3.8+
23
23
 
24
24
  ## Get Transcript for a Single Quarter
25
25
 
@@ -110,4 +110,3 @@ from earningscall import get_sp500_companies
110
110
  for company in get_sp500_companies():
111
111
  print(f"{company.company_info} -- {company.company_info.sector} -- {company.company_info.industry}")
112
112
  ```
113
-
@@ -3,6 +3,7 @@ dependencies = [
3
3
  "coverage[toml]>=6.5",
4
4
  "pytest",
5
5
  "responses",
6
+ "coveralls",
6
7
  ]
7
8
  [envs.default.scripts]
8
9
  test = "pytest {args:tests}"
@@ -20,7 +21,7 @@ cov = [
20
21
  type = "container"
21
22
 
22
23
  [[envs.all.matrix]]
23
- python = ["3.8", "3.9", "3.10", "3.11"]
24
+ python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
24
25
 
25
26
  [envs.lint]
26
27
  detached = true
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "earningscall"
3
- version = "0.0.12"
3
+ version = "0.0.13"
4
4
  description = "The EarningsCall Python library."
5
5
  readme = "README.md"
6
6
  authors = [
File without changes
File without changes
File without changes
File without changes