Skip to content

Commit

Permalink
chore: requirements to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
aaltat committed Mar 31, 2024
1 parent 158f689 commit 50b6118
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements-dev.txt
run: |
pip install -r requirements-dev.txt
pip install robotframework-browser
- name: Lint files
run: inv lint
- name: Run unit tests
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
with:
python-version: 3.12
- name: Install dependencies
run: pip install -r requirements-dev.txt
run: |
pip install -r requirements-dev.txt
pip install robotframework-browser
- name: Lint files
run: inv lint
- name: Run unit tests
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ classifiers = [
]
keywords = ["Robot Framework", "Browser"]

dependencies = ["robotframework-browser >= 18.2.0"]

[project.urls]
Homepage = "https://github.com/MarketSquare/robotframework-browser-translation-fi"
Issues = "https://github.com/MarketSquare/robotframework-browser-translation-fi/issues"
Changelog = "https://github.com/MarketSquare/robotframework-browser-translation-fi/blob/main/CHANGELOG.md"

[tool.setuptools]
packages = ["robotframework_browser_translation_fi"]
Expand Down
3 changes: 0 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ python-semantic-release >= 9.3.1
setuptools >= 61.0
build >= 1.2.1
mypy >= 1.9.0
# Include normal dependencies from requirements.txt. Makes it possible to use
# requirements-dev.txt as a single requirement file in PyCharm and other IDEs.
-r requirements.txt
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

0 comments on commit 50b6118

Please sign in to comment.