diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c3eb543..f839b63 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce5f396..5d42eb3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,26 +10,24 @@ on: jobs: prospector: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - - uses: jpetrucciani/prospector-check@1.8.1 - 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: @@ -37,7 +35,7 @@ jobs: 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: diff --git a/README.md b/README.md index 512e79c..cbcd0cc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/default.nix b/default.nix index acb3b60..77c1270 100644 --- a/default.nix +++ b/default.nix @@ -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"; }) { } }: diff --git a/hubspot3/globals.py b/hubspot3/globals.py index 9e23c3b..2c25003 100644 --- a/hubspot3/globals.py +++ b/hubspot3/globals.py @@ -1,7 +1,7 @@ """ globals file for hubspot3 """ -__version__ = "3.2.51" +__version__ = "3.2.52" BASE_URL = "https://api.hubapi.com" diff --git a/setup.py b/setup.py index 17ba6e5..7f8ff4e 100755 --- a/setup.py +++ b/setup.py @@ -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"]},