Skip to content

Commit d6c6778

Browse files
authored
maint: spooky fall 🍁 cleaning (#220)
1 parent 5d81141 commit d6c6778

File tree

8 files changed

+22
-17
lines changed

8 files changed

+22
-17
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
# ignore doctests
3939
pytest_opts: "-k pins/tests"
4040
steps:
41-
- uses: actions/checkout@v2
42-
- uses: actions/setup-python@v2
41+
- uses: actions/checkout@v4
42+
- uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ matrix.python }}
4545
- name: Install dependencies
@@ -83,8 +83,8 @@ jobs:
8383
runs-on: ubuntu-latest
8484
if: ${{ !github.event.pull_request.head.repo.fork }}
8585
steps:
86-
- uses: actions/checkout@v2
87-
- uses: actions/setup-python@v2
86+
- uses: actions/checkout@v4
87+
- uses: actions/setup-python@v4
8888
with:
8989
python-version: "3.10"
9090
- name: Install dependencies
@@ -112,8 +112,8 @@ jobs:
112112
runs-on: ubuntu-latest
113113
if: ${{ github.event.pull_request.head.repo.fork }}
114114
steps:
115-
- uses: actions/checkout@v2
116-
- uses: actions/setup-python@v2
115+
- uses: actions/checkout@v4
116+
- uses: actions/setup-python@v4
117117
with:
118118
python-version: "3.10"
119119
- name: Install dependencies
@@ -234,8 +234,8 @@ jobs:
234234
if: github.event_name == 'release'
235235
needs: [build-docs, tests, test-rsconnect]
236236
steps:
237-
- uses: actions/checkout@v2
238-
- uses: actions/setup-python@v2
237+
- uses: actions/checkout@v4
238+
- uses: actions/setup-python@v4
239239
with:
240240
python-version: "3.10"
241241
- name: "Build Package"

β€Ž.github/workflows/code-checks.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
name: "Run pre-commit"
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-python@v2
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v4
1818
- uses: pre-commit/action@v2.0.3

β€Ž.github/workflows/cross-compat.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: "Check cross lib compatibility"
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626

2727
- name: Install libcurl on Linux
2828
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev

β€ŽMAINTAINERS.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Who maintains pins
22

3-
The pins-python package was created by and is currently maintained by Michael Chow <michael.chow@posit.co>. [Posit Software, PBC](https://posit.co/products/open-source/) is a copyright holder and funder of this package.
3+
The pins-python package was is currently maintained by Isabel Zimmerman <isabel.zimmerman@posit.co>. [Posit Software, PBC](https://posit.co/products/open-source/) is a copyright holder and funder of this package.
44

55
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.

β€ŽREADME.mdβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# pins
22
<a href="https://rstudio.github.io/pins-python/"><img src="docs/logo.png" align="right" height="138" /></a>
33

4+
![PyPI - Version](https://img.shields.io/pypi/v/pins.svg) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pins)
5+
6+
7+
48
The pins package publishes data, models, and other Python objects,
59
making it easy to share them across projects and with your colleagues.
610
You can pin objects to a variety of pin *boards*, including folders (to
@@ -18,7 +22,7 @@ for R](https://pins.rstudio.com).
1822

1923
## Installation
2024

21-
You can install the released version of vetiver from
25+
You can install the released version of pins from
2226
[PyPI](https://pypi.org/project/pins/):
2327

2428
``` shell

β€Ždocs/index.qmdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ to read a pin created with the other. Learn more about
1818

1919
## Installation
2020

21-
You can install the released version of vetiver from [PyPI](https://pypi.org/project/pins/):
21+
You can install the released version of pins from [PyPI](https://pypi.org/project/pins/):
2222

2323
```bash
2424
python -m pip install pins

β€Žpins/constructors.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ def board_connect(
442442
board = board_connect()
443443
```
444444
445-
Or use the `[dotenv](https://saurabh-kumar.com/python-dotenv/)` package to load other environment variable names from a `.env` file:
445+
Or use the [dotenv](https://saurabh-kumar.com/python-dotenv/) package to load other environment variable names from a `.env` file:
446446
447447
```python
448448
import os

β€Žsetup.cfgβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ long_description_content_type = text/markdown
66
url = https://github.com/rstudio/pins-python
77
project_urls =
88
Documentation = https://rstudio.github.io/pins-python
9-
author = Michael Chow
10-
author_email = mc_al_github@fastmail.com
9+
author = Isabel Zimmerman
10+
author_email = isabel.zimmerman@posit.co
1111
license = MIT
1212
keywords = data, tidyverse
1313
classifiers =
1414
Programming Language :: Python :: 3.7
1515
Programming Language :: Python :: 3.8
1616
Programming Language :: Python :: 3.9
1717
Programming Language :: Python :: 3.10
18+
Programming Language :: Python :: 3.11
1819

1920

2021
[options]

0 commit comments

Comments
Β (0)