From d6c6778ef5040c757eed180aee59607e69bc4b1b Mon Sep 17 00:00:00 2001 From: Isabel Zimmerman <54685329+isabelizimm@users.noreply.github.com> Date: Thu, 2 Nov 2023 17:50:51 -0400 Subject: [PATCH] =?UTF-8?q?maint:=20spooky=20fall=20=F0=9F=8D=81=20cleanin?= =?UTF-8?q?g=20(#220)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 16 ++++++++-------- .github/workflows/code-checks.yml | 4 ++-- .github/workflows/cross-compat.yml | 2 +- MAINTAINERS.md | 2 +- README.md | 6 +++++- docs/index.qmd | 2 +- pins/constructors.py | 2 +- setup.cfg | 5 +++-- 8 files changed, 22 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94157a90..a6864e48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,8 @@ jobs: # ignore doctests pytest_opts: "-k pins/tests" steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - name: Install dependencies @@ -83,8 +83,8 @@ jobs: runs-on: ubuntu-latest if: ${{ !github.event.pull_request.head.repo.fork }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 with: python-version: "3.10" - name: Install dependencies @@ -112,8 +112,8 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.pull_request.head.repo.fork }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 with: python-version: "3.10" - name: Install dependencies @@ -234,8 +234,8 @@ jobs: if: github.event_name == 'release' needs: [build-docs, tests, test-rsconnect] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 with: python-version: "3.10" - name: "Build Package" diff --git a/.github/workflows/code-checks.yml b/.github/workflows/code-checks.yml index 359bfe9a..433489a6 100644 --- a/.github/workflows/code-checks.yml +++ b/.github/workflows/code-checks.yml @@ -13,6 +13,6 @@ jobs: name: "Run pre-commit" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 - uses: pre-commit/action@v2.0.3 diff --git a/.github/workflows/cross-compat.yml b/.github/workflows/cross-compat.yml index a0a5cbe9..3955b82b 100644 --- a/.github/workflows/cross-compat.yml +++ b/.github/workflows/cross-compat.yml @@ -22,7 +22,7 @@ jobs: name: "Check cross lib compatibility" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install libcurl on Linux run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 02194fc1..8e5c344e 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,5 +1,5 @@ # Who maintains pins -The pins-python package was created by and is currently maintained by Michael Chow . [Posit Software, PBC](https://posit.co/products/open-source/) is a copyright holder and funder of this package. +The pins-python package was is currently maintained by Isabel Zimmerman . [Posit Software, PBC](https://posit.co/products/open-source/) is a copyright holder and funder of this package. Several individuals in the community have taken an active role in helping to maintain this package and submit fixes. Those individuals are shown in the git changelog. diff --git a/README.md b/README.md index 397643b2..af007b66 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # pins +![PyPI - Version](https://img.shields.io/pypi/v/pins.svg) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pins) + + + The pins package publishes data, models, and other Python objects, making it easy to share them across projects and with your colleagues. You can pin objects to a variety of pin *boards*, including folders (to @@ -18,7 +22,7 @@ for R](https://pins.rstudio.com). ## Installation -You can install the released version of vetiver from +You can install the released version of pins from [PyPI](https://pypi.org/project/pins/): ``` shell diff --git a/docs/index.qmd b/docs/index.qmd index c5abcc3a..d1e78094 100644 --- a/docs/index.qmd +++ b/docs/index.qmd @@ -18,7 +18,7 @@ to read a pin created with the other. Learn more about ## Installation -You can install the released version of vetiver from [PyPI](https://pypi.org/project/pins/): +You can install the released version of pins from [PyPI](https://pypi.org/project/pins/): ```bash python -m pip install pins diff --git a/pins/constructors.py b/pins/constructors.py index 7d3351e0..599286a6 100644 --- a/pins/constructors.py +++ b/pins/constructors.py @@ -442,7 +442,7 @@ def board_connect( board = board_connect() ``` - Or use the `[dotenv](https://saurabh-kumar.com/python-dotenv/)` package to load other environment variable names from a `.env` file: + Or use the [dotenv](https://saurabh-kumar.com/python-dotenv/) package to load other environment variable names from a `.env` file: ```python import os diff --git a/setup.cfg b/setup.cfg index ec357c1f..340d0887 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,8 +6,8 @@ long_description_content_type = text/markdown url = https://github.com/rstudio/pins-python project_urls = Documentation = https://rstudio.github.io/pins-python -author = Michael Chow -author_email = mc_al_github@fastmail.com +author = Isabel Zimmerman +author_email = isabel.zimmerman@posit.co license = MIT keywords = data, tidyverse classifiers = @@ -15,6 +15,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 [options]