Skip to content

Commit

Permalink
update version number, add note to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Mar 6, 2023
1 parent d92c935 commit d5e0cc4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- name: install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,32 @@ on:

jobs:
prospector:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: jpetrucciani/[email protected]
with:
prospector_flags: '--die-on-tool-error'
- uses: jpetrucciani/prospector-check@master
mypy:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: jpetrucciani/mypy-check@master
black:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: jpetrucciani/black-check@master
with:
path: 'hubspot3/'
tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [mypy, prospector, black]
strategy:
matrix:
# '3.7', '3.8', '3.9', - need to figure out how to get around rate limiting
python-version: ['3.10']
name: python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ here](https://hubspot3.readthedocs.io/en/latest/)\! (thanks readthedocs)

# Quick start

## **Note: I'd recommend that you consider using the [official HubSpot Python API](https://github.com/HubSpot/hubspot-api-python). I no longer work at a company that uses HubSpot, and this library is a few versions behind on many of their APIs. I will be open to small PRs and usability fixes, but there will likely not be any further significant work on this library**

## Installation

```bash
Expand Down
6 changes: 3 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ jacobi ? import
(fetchTarball {
name = "jacobi-2022-12-01";
url = "https://nix.cobi.dev/x/9945abecd74cb4fd8eac371a1d71ca06fb8dd690";
sha256 = "1sa4m5sxvkg46bcmd1k5kl7r3jzlrbjfqbam3y7lc5a9n5nbhr3b";
name = "jpetrucciani-2023-03-06";
url = "https://github.com/jpetrucciani/nix/archive/fbae576baf69718f4328f88a958b93e7784b0539.tar.gz";
sha256 = "0kcc7rwfy4zdmfcv4rqllwmk9igx0v3mfz196q7k5j1nhhhlnnwj";
})
{ }
}:
Expand Down
2 changes: 1 addition & 1 deletion hubspot3/globals.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
globals file for hubspot3
"""
__version__ = "3.2.51"
__version__ = "3.2.52"


BASE_URL = "https://api.hubapi.com"
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def find_version(*file_paths):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
zip_safe=False,
extras_require={"cli": ["fire==0.4.0"]},
Expand Down

0 comments on commit d5e0cc4

Please sign in to comment.