Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ version: 2
updates:
- package-ecosystem: pip
directory: "/"
exclude-paths:
- "requirements-dev.txt"
- "setup.py"
schedule:
interval: weekly
time: "01:30"
open-pull-requests-limit: 10
open-pull-requests-limit: 5
target-branch: dev
assignees:
- "sepandhaghighi"
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .
- name: Test requirements installation
- name: Dev requirements installation
run: |
python otherfiles/requirements-splitter.py
pip install --upgrade --upgrade-strategy=only-if-needed -r test-requirements.txt
pip install --upgrade --upgrade-strategy=only-if-needed -r requirements-dev.txt
- name: Test with pytest
run: |
python -m pytest . --cov=rokh --cov-report=term
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Dependencies structure modified
## [0.4] - 2026-04-29
### Added
- Bahesab calendar events
Expand Down
2 changes: 0 additions & 2 deletions dev-requirements.txt → requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
jdatetime==5.2.0
hijridate==2.5.0
setuptools>=40.8.0
vulture>=1.0
bandit>=1.5.1
Expand Down
2 changes: 2 additions & 0 deletions requirements-latest.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jdatetime==5.2.0
hijridate==2.5.0
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

21 changes: 7 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
# -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup


def get_requires() -> list:
"""Read requirements.txt."""
requirements = open("requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))

from setuptools import setup

def read_description() -> str:
"""Read README.md and CHANGELOG.md."""
Expand Down Expand Up @@ -40,11 +30,14 @@ def read_description() -> str:
author_email='rokh@openscilab.com',
url='https://github.com/openscilab/rokh',
download_url='https://github.com/openscilab/rokh/tarball/v0.4',
keywords="events date date-system calendar gregorian hijri jalali",
keywords='events date date-system calendar gregorian hijri jalali',
project_urls={
'Source': 'https://github.com/openscilab/rokh',
'Source': 'https://github.com/openscilab/rokh',
},
install_requires=get_requires(),
install_requires=[
'jdatetime>=3.8.2',
'hijridate>=2.3.0'
],
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down
Loading