Skip to content

Commit f229343

Browse files
committed
[version] bump to 3.1.0
1 parent 7eb85b8 commit f229343

6 files changed

Lines changed: 17 additions & 102 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
1+
---
12
name: CI
23

34
on:
45
push:
5-
branches: [master]
6+
branches: [main]
67
pull_request:
7-
branches: [master]
8+
branches: [main]
9+
10+
permissions:
11+
contents: read
12+
statuses: write
813

914
jobs:
1015
test:
1116
runs-on: ubuntu-latest
1217

1318
steps:
14-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
20+
with:
21+
persist-credentials: false
1522

1623
- name: Set up Python
17-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
1825
with:
1926
python-version: "3.10"
2027

2128
- name: Install uv
22-
uses: astral-sh/setup-uv@v4
29+
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4
2330

2431
- name: Cache uv dependencies
25-
uses: actions/cache@v4
32+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2633
with:
2734
path: .venv
2835
key: uv-venv-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
@@ -36,14 +43,14 @@ jobs:
3643
run: uv run pytest -n 8 --cov --cov-report=xml --cov-report=term
3744

3845
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v4
46+
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4
4047
with:
4148
token: ${{ secrets.CODECOV_TOKEN }}
4249
files: ./coverage.xml
4350
fail_ci_if_error: false
4451

4552
- name: Upload coverage to Coveralls
46-
uses: coverallsapp/github-action@v2
53+
uses: coverallsapp/github-action@8d6379e14d29928660c4ba802d8e85393440b329 # v2
4754
with:
4855
github-token: ${{ secrets.GITHUB_TOKEN }}
4956
file: ./coverage.xml

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# zenodo_get: a downloader for Zenodo records
22

33
[![CI]
4-
[![CIRCLECI]
54
[![BUILD STATUS]
65
[![COVERAGE STATUS]
76
[![PYVERSION]

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
image:
23
- Visual Studio 2019
34

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zenodo-get"
3-
version = "3.0.3"
3+
version = "3.1.0"
44
description = "Zenodo_get - a downloader for Zenodo records"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)