Skip to content

Commit

Permalink
Merge pull request #145 from openedx/feanil/fix_readme
Browse files Browse the repository at this point in the history
feanil/fix readme
  • Loading branch information
feanil committed Apr 11, 2024
2 parents 716d6d8 + 939d4e3 commit 2ae3902
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -37,7 +37,8 @@ jobs:

- name: Upload coverage to CodeCov
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42'
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
run: python setup.py sdist bdist_wheel

- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}
2 changes: 1 addition & 1 deletion i18n/__init__.py
Expand Up @@ -6,7 +6,7 @@

from . import config

__version__ = '1.4.0'
__version__ = '1.5.0'


class Runner:
Expand Down
7 changes: 7 additions & 0 deletions setup.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import os
import re
import pathlib

from setuptools import setup

Expand Down Expand Up @@ -42,11 +43,17 @@ def get_version(*file_paths):

VERSION = get_version("i18n", "__init__.py")

here = pathlib.Path(__file__).parent.resolve()

# Get the long description from the README file
long_description = (here / "README.rst").read_text(encoding="utf-8")

setup(
name='edx-i18n-tools',
version=VERSION,
description='edX Internationalization Tools',
long_description=long_description,
long_description_content_type='text/x-rst',
author='edX',
author_email='oscm@edx.org',
url='https://github.com/openedx/i18n-tools',
Expand Down

0 comments on commit 2ae3902

Please sign in to comment.