Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to fix codecov stats & prep 1.0.0 #148

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Codecov
name: CI
on: [push]
jobs:
lint:
Expand Down Expand Up @@ -44,7 +44,8 @@ jobs:
coverage run -m test_simpleeval
coverage xml
- name: Upload to codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4.0.1
with:
files: coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = simpleeval
version = 0.9.13
version = 1.0.0
author = Daniel Fairhead
author_email = [email protected]
description = A simple, safe single expression evaluator library.
Expand All @@ -9,7 +9,7 @@ url = https://github.com/danthedeckie/simpleeval
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 4 - Beta
Development Status :: Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries :: Python Modules
Expand Down