Skip to content

Commit

Permalink
update project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-arenas committed Jul 28, 2023
1 parent 372d550 commit db08b24
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 36 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9]
python-version: [ '3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- os: ubuntu-latest
Expand Down Expand Up @@ -39,4 +39,5 @@ jobs:
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ sphinx:

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
version: 3.8
install:
- requirements: dev-requirements.txt
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://www.travis-ci.com/rodrigo-arenas/pyworkforce.svg?branch=main)](https://www.travis-ci.com/rodrigo-arenas/pyworkforce)
[![Codecov](https://codecov.io/gh/rodrigo-arenas/pyworkforce/branch/main/graphs/badge.svg?branch=main&service=github)](https://codecov.io/github/rodrigo-arenas/pyworkforce?branch=main)
[![PyPI Version](https://badge.fury.io/py/pyworkforce.svg)](https://badge.fury.io/py/pyworkforce)
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue)](https://www.python.org/downloads/)
[![Python Version](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)](https://www.python.org/downloads/)


# pyworkforce
Expand Down
14 changes: 7 additions & 7 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pytest==6.2.2
codecov==2.1.11
pytest-cov==2.11.1
pytest==7.4.0
codecov==2.1.13
pytest-cov==4.1.0
twine==3.3.0
numpy~=1.18.1
ortools>=7.8.7959
pandas~=1.0.0
joblib~=0.11
numpy>=1.23.0
ortools>=9.1.9552
pandas>=1.3.5
joblib>0.17
sphinx
sphinx_gallery
sphinx_rtd_theme
Expand Down
10 changes: 10 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ Release Notes

Some notes on new features in various releases

What's new in 0.5.1dev0
-----------------------

^^^^^^^^^
Features:
^^^^^^^^^

* Update the project dependencies
* Remove support for python 3.7 and add support for python up to 3.11

What's new in 0.5.0
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pyworkforce/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.5.1dev0"
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
classifiers=[
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
project_urls={
"Documentation": "https://pyworkforce.readthedocs.io/en/stable/",
Expand All @@ -38,11 +39,11 @@
},
packages=find_packages(include=['pyworkforce', 'pyworkforce.*']),
install_requires=[
'numpy',
'numpy>=1.23.0',
'ortools>=9.2.9972',
'pandas',
'joblib>=0.11'
'pandas>=1.3.5',
'joblib>0.17'
],
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
)

0 comments on commit db08b24

Please sign in to comment.