Skip to content

Commit

Permalink
chore: removed unnecessary codecov dep, other cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
cordery committed Jan 11, 2024
1 parent 88a8aee commit e9fa3e8
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
django-version: [ ">=3,<4", ">=4,<5", ">=5,<6" ]

steps:
Expand Down
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.1.1]

### Changed

- Removed unnecessary codecov dependency

## [2.1]

### Added
Expand Down
21 changes: 7 additions & 14 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ Ready to contribute? Here's how to set up `django-languages-plus` for local deve

Now you can make your changes locally.

5. When you're done making changes, check that your changes pass flake8 and the
tests, including testing other Python versions with tox::
5. When you're done making changes, check that your changes are lint free, formatted, and pass the tests,
including testing other Python versions with tox::

$ flake8 languages_plus tests
$ ruff check .
# ruff format
$ tox

To get flake8 and tox, just pip install them into your virtualenv.

6. Commit your changes and push your branch to GitHub::

Expand All @@ -99,13 +99,6 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check
https://travis-ci.org/cordery/django-languages-plus/pull_requests
and make sure that the tests pass for all supported Python versions.

Tips
----

To run a subset of tests::

$ python -m unittest tests.test_languages_plus
3. The pull request should work for the Python & Django versions specified in
tox.ini. Run tox and make sure that the tests pass for all supported Python
versions.
8 changes: 2 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@ Django Languages Plus
.. image:: https://badge.fury.io/py/django-languages-plus.svg
:target: https://badge.fury.io/py/django-languages-plus

.. image:: https://travis-ci.org/cordery/django-languages-plus.svg?branch=master
:target: https://travis-ci.org/cordery/django-languages-plus

.. image:: https://codecov.io/gh/cordery/django-languages-plus/branch/master/graph/badge.svg
:target: https://codecov.io/gh/cordery/django-languages-plus

.. image:: https://github.com/cordery/django-languages-plus/actions/workflows/tox.yml/badge.svg
:target: https://github.com/cordery/django-languages-plus/actions/workflows/tox.yml


django-languages-plus provides models and fixtures for working with both common languages and 'culture codes' or locale codes, like pt-BR.
Expand Down
17 changes: 1 addition & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ classifiers = [
python = ">=3.8,<4"
django = ">=3.2,<6"
django-countries-plus = ">2"
codecov = "2.1.13"

[tool.poetry.group.test.dependencies]
coverage = "^7"
codecov = "^2"
pytest = "^7"
pytest-cov = "^4"
pytest-django = "^4.5"
Expand Down

0 comments on commit e9fa3e8

Please sign in to comment.