Skip to content

Commit 7d89e0e

Browse files
authored
Merge pull request #148 from danthedeckie/infra-fixes
Attempt to fix codecov stats & prep 1.0.0
2 parents 9c90b10 + 570476b commit 7d89e0e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Codecov
1+
name: CI
22
on: [push]
33
jobs:
44
lint:
@@ -44,7 +44,8 @@ jobs:
4444
coverage run -m test_simpleeval
4545
coverage xml
4646
- name: Upload to codecov
47-
uses: codecov/codecov-action@v2
47+
uses: codecov/codecov-action@v4.0.1
4848
with:
4949
files: coverage.xml
50+
token: ${{ secrets.CODECOV_TOKEN }}
5051
verbose: true

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = simpleeval
3-
version = 0.9.13
3+
version = 1.0.0
44
author = Daniel Fairhead
55
author_email = danthedeckie@gmail.com
66
description = A simple, safe single expression evaluator library.
@@ -9,7 +9,7 @@ url = https://github.com/danthedeckie/simpleeval
99
long_description = file: README.rst
1010
long_description_content_type = text/x-rst
1111
classifiers =
12-
Development Status :: 4 - Beta
12+
Development Status :: Development Status :: 5 - Production/Stable
1313
Intended Audience :: Developers
1414
License :: OSI Approved :: MIT License
1515
Topic :: Software Development :: Libraries :: Python Modules

0 commit comments

Comments
 (0)