Skip to content

Commit

Permalink
Merge pull request #10 from jepler/fix-release
Browse files Browse the repository at this point in the history
Fix release process
  • Loading branch information
jepler authored Oct 3, 2023
2 parents 9f044a0 + b57bbbb commit 7ddc70b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.10
python-version: "3.x"

- name: Install deps
run: python -mpip install -r requirements-dev.txt
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ jobs:
- name: Test
run: python -mcoverage run --branch -m unittest testleapseconddata.py && python -mcoverage report --fail-under=100 && python -mcoverage xml

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
with:
env_vars: PYTHON
fail_ci_if_error: true

pre-commit:
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ SPDX-FileCopyrightText: 2021 Jeff Epler
SPDX-License-Identifier: GPL-3.0-only
-->
[![Test leapseconddata](https://github.com/jepler/leapseconddata/actions/workflows/test.yml/badge.svg)](https://github.com/jepler/leapseconddata/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/jepler/leapseconddata/branch/main/graph/badge.svg?token=Exx0c3Gp65)](https://codecov.io/gh/jepler/leapseconddata)
[![PyPI](https://img.shields.io/pypi/v/leapseconddata)](https://pypi.org/project/leapseconddata)
[![Documentation Status](https://readthedocs.org/projects/leapseconddata/badge/?version=latest)](https://leapseconddata.readthedocs.io/en/latest/?badge=latest)

Expand Down
4 changes: 0 additions & 4 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ leapseconddata
:target: https://github.com/jepler/leapseconddata/actions/workflows/test.yml
:alt: Test leapseconddata

.. image:: https://codecov.io/gh/jepler/leapseconddata/branch/main/graph/badge.svg?token=Exx0c3Gp65
:target: https://codecov.io/gh/jepler/leapseconddata
:alt: codecov

.. image:: https://img.shields.io/pypi/v/leapseconddata
:target: https://pypi.org/project/leapseconddata
:alt: PyPI
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ long_description_content_type = text/markdown
url = https://github.com/jepler/leapseconddata
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Expand All @@ -24,7 +25,7 @@ classifiers =
[options]
package_dir =
=.
python_requires = >=3.7
python_requires = >=3.8
packages = leapseconddata

[options.package_data]
Expand Down

0 comments on commit 7ddc70b

Please sign in to comment.