Skip to content

Commit

Permalink
fix: rollback install as it changed nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
manawasp committed Mar 13, 2024
1 parent 5b0364d commit 8cfc875
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
pyproject.toml
- name: Install dependencies
run: scripts/install.sh
run: pip install -r requirements.txt

- name: Run linting checks
run: scripts/lint.sh
Expand Down
2 changes: 1 addition & 1 deletion examples/webapp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is code for the tutorial in README.rst
# This is code for the tutorial in README.md
from typing import Any, List, MutableMapping

from aiohttp.web import Application
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.package-data]
"modeStreaming" = ["py.typed"]

[tool.distutils.bdist_wheel]
universal = true

[project]
name = "mode-streaming"
version = "0.3.5"
description = "AsyncIO Service-based programming"
readme = "README.rst"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["asyncio", "service", "bootsteps", "graph", "coroutine"]
authors = [
Expand Down
17 changes: 0 additions & 17 deletions scripts/install.sh

This file was deleted.

0 comments on commit 8cfc875

Please sign in to comment.