Skip to content

Commit

Permalink
build: various fixes and release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thebaptiste committed Oct 27, 2022
1 parent 2b65743 commit ea9db13
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
31 changes: 0 additions & 31 deletions .metwork-framework/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include requirements.txt
include .metwork-framework/README.md
include README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
line for line in reqs.read().split('\n')
if (line and not line.startswith('--')) and (";" not in line)]

with open(".metwork-framework/README.md") as f:
with open("README.md") as f:
long_description = f.read()

setup(
author="Fabien MARTY",
author_email="fabien.marty@gmail.com",
name="jinja2_getenv_extension",
version="1.0.1",
version="1.0.2",
license="BSD",
packages=find_packages(),
install_requires=install_requires,
Expand Down

0 comments on commit ea9db13

Please sign in to comment.